From 2ad7ffdd7e29e372c5dc8bcdf87ab2ee4d521314 Mon Sep 17 00:00:00 2001 From: shifengbin Date: Wed, 29 Jun 2022 20:44:59 +0800 Subject: [PATCH] fix: remove the output of the proto command --- 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) { -}