goctl api new should given a service_name explictly (#1688)

master
fang duan 3 years ago committed by GitHub
parent 4382ec0e0d
commit fadef0ccd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save