package main import ( "context" "flag" "fmt" "net/http" "time" "fusenapi/service/repositories" "fusenapi/utils/auth" "fusenapi/utils/fsconfig" "fusenapi/server/order/internal/config" "fusenapi/server/order/internal/handler" "fusenapi/server/order/internal/svc" "github.com/zeromicro/go-zero/rest" ) var configFile = flag.String("f", "etc/order.yaml", "the config file") func main() { flag.Parse() var c config.Config fsconfig.StartNacosConfig(*configFile, &c, nil) c.Timeout = int64(time.Second * 15) server := rest.MustNewServer(c.RestConf, rest.WithCustomCors(auth.FsCors, func(w http.ResponseWriter) { })) defer server.Stop() ctx := svc.NewServiceContext(c) handler.RegisterHandlers(server, ctx) go ctx.Repositories.NewOrder.CloseList(context.Background(), &repositories.CloseListReq{}) fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port) server.Start() }