basic implementation of create/delete pool

This commit is contained in:
2026-03-02 21:45:39 +00:00
parent 75dd027c59
commit 322f233718
16 changed files with 922 additions and 162 deletions

12
user-manager-api.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"flag"
app "user-manager-api/app"
)
func main() {
configPath := flag.String("config", "config.json", "path to config.json file")
flag.Parse()
app.Run(configPath)
}