fathom/commands/data.go
Danny van Kooten 593b3563d6 gofmt project
2016-12-11 14:50:01 +01:00

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()
}