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

39 lines
800 B
Go
Raw Normal View History

2023-05-31 10:33:02 +00:00
package main
import (
"flag"
"fmt"
2023-07-11 11:43:46 +00:00
"net/http"
2023-07-12 02:22:03 +00:00
"time"
2023-05-31 10:33:02 +00:00
2023-06-08 02:51:56 +00:00
"fusenapi/server/home-user-auth/internal/config"
"fusenapi/server/home-user-auth/internal/handler"
"fusenapi/server/home-user-auth/internal/svc"
2023-07-11 11:43:46 +00:00
"fusenapi/utils/auth"
2023-05-31 10:33:02 +00:00
"github.com/zeromicro/go-zero/core/conf"
"github.com/zeromicro/go-zero/rest"
)
var configFile = flag.String("f", "etc/home-user-auth.yaml", "the config file")
2023-05-31 10:33:02 +00:00
func main() {
flag.Parse()
var c config.Config
2023-07-18 08:44:46 +00:00
2023-05-31 10:33:02 +00:00
conf.MustLoad(*configFile, &c)
2023-07-12 02:22:03 +00:00
c.Timeout = int64(time.Second * 15)
2023-05-31 10:33:02 +00:00
2023-07-11 11:43:46 +00:00
server := rest.MustNewServer(c.RestConf, rest.WithCustomCors(auth.FsCors, func(w http.ResponseWriter) {
}))
2023-05-31 10:33:02 +00:00
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()
}