瀏覽代碼

simplify code generation

kevin 4 年之前
父節點
當前提交
936dd67008
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      tools/goctl/rpc/gen/genmain.go

+ 1 - 2
tools/goctl/rpc/gen/genmain.go

@@ -35,10 +35,9 @@ func main() {
 	ctx := svc.NewServiceContext(c)
 	ctx := svc.NewServiceContext(c)
 	{{.srv}}
 	{{.srv}}
 
 
-	s, err := zrpc.NewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
+	s := zrpc.MustNewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
 		{{.registers}}
 		{{.registers}}
 	})
 	})
-	logx.Must(err)
 	defer s.Stop()
 	defer s.Stop()
 
 
 	fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)
 	fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)