add command to initialize a list of admin numbers

This commit is contained in:
Carlosokumu 2024-10-31 21:00:41 +03:00
parent 7aab3cff8c
commit 7fa38340dd
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

17
devtools/main.go Normal file
View File

@ -0,0 +1,17 @@
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)
}
}