fusenapi/home-user-auth/home-user-auth.go

32 lines
597 B
Go
Raw Normal View History

2023-05-31 10:33:02 +00:00
package main
import (
"flag"
"fmt"
"home-user-auth/internal/config"
"home-user-auth/internal/handler"
"home-user-auth/internal/svc"
"github.com/zeromicro/go-zero/core/conf"
"github.com/zeromicro/go-zero/rest"
)
var configFile = flag.String("f", "etc/user-auth.yaml", "the config file")
func main() {
flag.Parse()
var c config.Config
conf.MustLoad(*configFile, &c)
server := rest.MustNewServer(c.RestConf)
defer server.Stop()
ctx := svc.NewServiceContext(c)
handler.RegisterHandlers(server, ctx)
fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port)
server.Start()
}