fix(goctl): Fix #2561 (#2562)

* Fix #2561

* format code
This commit is contained in:
anqiansong
2022-10-29 22:40:56 +08:00
committed by GitHub
parent 7eb6aae949
commit 3db64c7d47
2 changed files with 10 additions and 4 deletions

View File

@@ -104,8 +104,10 @@ func RPCNew(_ *cobra.Command, args []string) error {
}
// RPCTemplate is the entry for generate rpc template
func RPCTemplate(_ *cobra.Command, _ []string) error {
console.Warning("deprecated: goctl rpc template -o is deprecated and will be removed in the future, use goctl rpc -o instead")
func RPCTemplate(latest bool) error {
if !latest {
console.Warning("deprecated: goctl rpc template -o is deprecated and will be removed in the future, use goctl rpc -o instead")
}
protoFile := VarStringOutput
home := VarStringHome
remote := VarStringRemote