wrap in devtools/admin

This commit is contained in:
2024-11-01 16:44:54 +03:00
parent 5e4a9e7567
commit 332074375a
3 changed files with 1 additions and 1 deletions

17
devtools/admin/main.go Normal file
View File

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