Rename module, export storage, testutil

This commit is contained in:
lash
2025-01-10 10:53:27 +00:00
parent 9ca5091692
commit f1664a43a8
56 changed files with 66 additions and 5502 deletions

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

@@ -0,0 +1,17 @@
package main
import (
"context"
"log"
"git.grassecon.net/grassrootseconomics/visedriver/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)
}
}