fusenapi/server/product/product.go

35 lines
727 B
Go
Raw Normal View History

2023-06-01 07:32:28 +00:00
package main
import (
"flag"
"fmt"
2023-07-11 11:43:46 +00:00
"net/http"
2023-06-01 07:32:28 +00:00
2023-06-08 03:03:20 +00:00
"fusenapi/server/product/internal/config"
"fusenapi/server/product/internal/handler"
"fusenapi/server/product/internal/svc"
2023-07-11 11:43:46 +00:00
"fusenapi/utils/auth"
2023-09-19 03:41:38 +00:00
"fusenapi/utils/fsconfig"
2023-06-01 07:32:28 +00:00
"github.com/zeromicro/go-zero/rest"
)
var configFile = flag.String("f", "etc/product.yaml", "the config file")
func main() {
flag.Parse()
var c config.Config
2023-09-19 09:34:10 +00:00
fsconfig.StartNacosConfig(*configFile, &c, nil)
2023-06-01 07:32:28 +00:00
2023-07-11 11:43:46 +00:00
server := rest.MustNewServer(c.RestConf, rest.WithCustomCors(auth.FsCors, func(w http.ResponseWriter) {
}))
2023-06-01 07:32:28 +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()
}