basic implementation of create/delete pool
This commit is contained in:
12
user-manager-api.go
Normal file
12
user-manager-api.go
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user