fix: service 完成

master v1.0.0
icechen 2022-01-06 23:37:09 +08:00
parent 79629d1263
commit b682605762
1 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ func ActionNewService(c *cli.Context) error {
if len(appList) == 0 {
appName := ""
for {
appName = util.ReadLineWithMessage("请输入要创建的api名称: ")
appName = util.ReadLineWithMessage("请输入要创建的service名称: ")
if appName != "" {
break
} else {
@ -59,11 +59,11 @@ func ActionNewService(c *cli.Context) error {
appList = append(appList, appName)
}
for _, newApp := range appList {
color.Green("正在创建[%s]API应用...", newApp)
color.Green("正在创建[%s]Service应用...", newApp)
app := config.Config.Service.GetApp(newApp)
app = config.Service{
Name: newApp,
Root: "app/api/" + newApp,
Root: "app/service/" + newApp,
}
if util.ExistDir(app.Root) && !util.ReadBoolWithMessage(app.Root+"目录已存在,是否要覆盖app文件目录(y/n): ") {
@ -109,7 +109,7 @@ func ActionNewService(c *cli.Context) error {
return err
}
color.Green("[%s]API应用创建成功!!!\n\n", newApp)
color.Green("[%s]Service应用创建成功!!!\n\n", newApp)
}
return nil
}