show help when running goctl rpc template without any flags (#1685)

close #1684
This commit is contained in:
fang duan
2022-04-08 22:28:45 +08:00
committed by GitHub
parent 8bc34defc4
commit 0cc9d4ff8d

View File

@@ -59,6 +59,10 @@ func RPCNew(c *cli.Context) error {
// RPCTemplate is the entry for generate rpc template
func RPCTemplate(c *cli.Context) error {
if c.NumFlags() == 0 {
cli.ShowCommandHelpAndExit(c, "template", 1)
}
protoFile := c.String("o")
home := c.String("home")
remote := c.String("remote")