Pārlūkot izejas kodu

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

close #1684
fang duan 3 gadi atpakaļ
vecāks
revīzija
0cc9d4ff8d
1 mainītis faili ar 4 papildinājumiem un 0 dzēšanām
  1. 4 0
      tools/goctl/rpc/cli/cli.go

+ 4 - 0
tools/goctl/rpc/cli/cli.go

@@ -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")