mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 03:20:27 +00:00
15 lines
188 B
Go
15 lines
188 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/dannyvankooten/ana/count"
|
|
"github.com/dannyvankooten/ana/db"
|
|
)
|
|
|
|
func seedData() {
|
|
db.Seed(nArg)
|
|
}
|
|
|
|
func archiveData() {
|
|
count.CreateArchives()
|
|
}
|