Files
access-manager-api/user-manager-api.go
T
alu de7ac282db implement pool group and user get routes,
improvements to http return codes,
add localdb backend handler
2026-04-29 21:15:20 +00:00

14 lines
290 B
Go

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