2024-10-31 19:00:41 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"log"
|
|
|
|
|
2024-11-01 14:44:54 +01:00
|
|
|
"git.grassecon.net/urdt/ussd/devtools/admin/commands"
|
2024-10-31 19:00:41 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|