1. TODO: guest_id 2. jwt的封装

This commit is contained in:
eson
2023-06-12 19:52:11 +08:00
parent b6095d67ad
commit bdaa3bf48b
9 changed files with 100 additions and 88 deletions

View File

@@ -28,19 +28,19 @@ func main() {
// var testConfigFile = flag.String("f", "../etc/{{.serviceName}}.yaml", "the config file")
// var cnf config.Config
// func GetTestServer() *rest.Server {
// flag.Parse()
// var c config.Config
// conf.MustLoad(*testConfigFile, &c)
// conf.MustLoad(*testConfigFile, &cnf)
// server := rest.MustNewServer(c.RestConf)
// server := rest.MustNewServer(cnf.RestConf)
// defer server.Stop()
// ctx := svc.NewServiceContext(c)
// ctx := svc.NewServiceContext(cnf)
// handler.RegisterHandlers(server, ctx)
// fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port)
// fmt.Printf("Starting server at %s:%d...\n", cnf.Host, cnf.Port)
// return server
// }