18 lines
266 B
Go
18 lines
266 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
|
|
"git.grassecon.net/urdt/ussd/devtools/admin/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)
|
|
}
|
|
|
|
}
|