mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-02 16:28:39 +08:00
goctl api new should given a service_name explictly (#1688)
This commit is contained in:
parent
4382ec0e0d
commit
fadef0ccd9
@ -20,11 +20,12 @@ var apiTemplate string
|
||||
|
||||
// CreateServiceCommand fast create service
|
||||
func CreateServiceCommand(c *cli.Context) error {
|
||||
if c.NArg() == 0 {
|
||||
cli.ShowCommandHelpAndExit(c, "new", 1)
|
||||
}
|
||||
|
||||
args := c.Args()
|
||||
dirName := args.First()
|
||||
if len(dirName) == 0 {
|
||||
dirName = "greet"
|
||||
}
|
||||
|
||||
dirStyle := c.String("style")
|
||||
if len(dirStyle) == 0 {
|
||||
|
@ -137,9 +137,10 @@ var commands = []cli.Command{
|
||||
Action: apigen.ApiCommand,
|
||||
Subcommands: []cli.Command{
|
||||
{
|
||||
Name: "new",
|
||||
Usage: "fast create api service",
|
||||
Action: new.CreateServiceCommand,
|
||||
Name: "new",
|
||||
Usage: "fast create api service",
|
||||
UsageText: "example: goctl api new [options] server_name",
|
||||
Action: new.CreateServiceCommand,
|
||||
Flags: []cli.Flag{
|
||||
cli.StringFlag{
|
||||
Name: "home",
|
||||
|
Loading…
Reference in New Issue
Block a user