go-mastodon-stats/internal/gomastodonstats/main.go
2023-01-30 10:56:54 +13:00

18 lines
234 B
Go

package gomastodonstats
import "log"
func Run() {
log.Println("Fetching counts")
// Get Counts
metrics, err := getUserCounts()
if err != nil {
log.Fatal(err)
}
// Write to DB
persistMetrics(metrics)
// Output example
}