fusenapi/server/map-library/map-library.go

36 lines
742 B
Go
Raw Normal View History

2023-06-14 06:57:20 +00:00
package main
import (
"flag"
"fmt"
2023-07-11 11:43:46 +00:00
"net/http"
2023-06-14 06:57:20 +00:00
2023-06-15 04:00:32 +00:00
"fusenapi/server/map-library/internal/config"
"fusenapi/server/map-library/internal/handler"
"fusenapi/server/map-library/internal/svc"
2023-07-11 11:43:46 +00:00
"fusenapi/utils/auth"
2023-06-14 06:57:20 +00:00
"github.com/zeromicro/go-zero/core/conf"
"github.com/zeromicro/go-zero/rest"
)
var configFile = flag.String("f", "etc/map-library.yaml", "the config file")
func main() {
flag.Parse()
var c config.Config
conf.MustLoad(*configFile, &c)
2023-07-11 11:43:46 +00:00
server := rest.MustNewServer(c.RestConf, rest.WithCustomCors(auth.FsCors, func(w http.ResponseWriter) {
}))
2023-06-14 06:57:20 +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()
}