From 07ad053f3297781918886bc68d824cb92943ec18 Mon Sep 17 00:00:00 2001 From: FengbinShi Date: Tue, 28 Jun 2022 20:52:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=B7=A5=E5=85=B7=E4=BD=93?= =?UTF-8?q?=E9=AA=8C,=E4=BD=BF=E7=94=A8proto=E5=9C=A8=E4=B8=8D=E5=8A=A0?= =?UTF-8?q?=E5=90=8E=E7=BB=AD=E5=8F=82=E6=95=B0=E6=97=B6=E6=97=A0=E4=BB=BB?= =?UTF-8?q?=E4=BD=95=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/kratos/internal/proto/proto.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmd/kratos/internal/proto/proto.go b/cmd/kratos/internal/proto/proto.go index c23e5a834..4b9c858b9 100644 --- a/cmd/kratos/internal/proto/proto.go +++ b/cmd/kratos/internal/proto/proto.go @@ -13,7 +13,6 @@ var CmdProto = &cobra.Command{ Use: "proto", Short: "Generate the proto files", Long: "Generate the proto files.", - Run: run, } func init() { @@ -21,6 +20,3 @@ func init() { CmdProto.AddCommand(client.CmdClient) CmdProto.AddCommand(server.CmdServer) } - -func run(cmd *cobra.Command, args []string) { -}