fusenapi/server/pay/pay.go

38 lines
818 B
Go
Raw Normal View History

2023-07-26 03:06:05 +00:00
package main
import (
"flag"
"fmt"
"net/http"
"fusenapi/utils/auth"
2023-09-19 03:41:38 +00:00
"fusenapi/utils/fsconfig"
2023-07-26 03:06:05 +00:00
"fusenapi/server/pay/internal/config"
"fusenapi/server/pay/internal/handler"
"fusenapi/server/pay/internal/svc"
"github.com/zeromicro/go-zero/core/conf"
"github.com/zeromicro/go-zero/rest"
)
var configFile = flag.String("f", "etc/pay.yaml", "the config file")
func main() {
flag.Parse()
2023-09-19 03:41:38 +00:00
cfgContent := fsconfig.StartNacosConfig(*configFile, nil)
2023-07-26 03:06:05 +00:00
var c config.Config
2023-09-19 03:41:38 +00:00
conf.LoadConfigFromYamlBytes([]byte(cfgContent), &c)
2023-07-26 03:06:05 +00:00
server := rest.MustNewServer(c.RestConf, rest.WithCustomCors(auth.FsCors, func(w http.ResponseWriter) {
}))
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()
}