ussd/devtools/main.go

18 lines
260 B
Go
Raw Normal View History

package main
import (
"context"
"log"
"git.grassecon.net/urdt/ussd/devtools/commands"
)
func main() {
ctx := context.Background()
err := commands.Seed(ctx)
if err != nil {
log.Fatalf("Failed to initialize a list of admins with error %s", err)
}
}