fathom/pkg/commands/archive.go

11 lines
183 B
Go
Raw Normal View History

package commands
import (
"github.com/usefathom/fathom/pkg/count"
)
2018-04-23 08:50:31 +00:00
// Archive processes unarchived data (pageviews to aggregated count tables)
func Archive() {
count.Archive()
}