mirror of
https://github.com/status-im/fathom.git
synced 2025-02-28 19:10:36 +00:00
17 lines
316 B
Go
17 lines
316 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/dannyvankooten/ana/count"
|
|
"github.com/dannyvankooten/ana/datastore"
|
|
)
|
|
|
|
// Seed creates n database records with dummy data
|
|
func Seed(n int) {
|
|
datastore.Seed(n)
|
|
}
|
|
|
|
// Archive processes unarchived data (pageviews to aggeegated count tables)
|
|
func Archive() {
|
|
count.Archive()
|
|
}
|