Compare commits

...

2 Commits

3 changed files with 13 additions and 4 deletions

View File

@ -1,6 +1,7 @@
package bootstrap package bootstrap
import ( import (
"errors"
"os" "os"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -57,9 +58,17 @@ func AddServiceCommand() *cobra.Command {
buf, err := gobuf.NewParser(pbPath) buf, err := gobuf.NewParser(pbPath)
if err != nil { if err != nil {
if !errors.Is(err, os.ErrNotExist) {
logrus.Errorf("read proto file failed: %v", err) logrus.Errorf("read proto file failed: %v", err)
return return
} }
err := buf.CreateFile(pbPath)
if err != nil {
logrus.Errorf("read proto file failed (when create new file): %v", err)
return
}
}
if buf.ExistService(svcName) { if buf.ExistService(svcName) {
logrus.Errorf("router group name exist") logrus.Errorf("router group name exist")
return return

2
go.mod
View File

@ -6,7 +6,7 @@ require (
code.gitea.io/sdk/gitea v0.17.1 code.gitea.io/sdk/gitea v0.17.1
github.com/sirupsen/logrus v1.9.3 github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.0 github.com/spf13/cobra v1.8.0
gitter.top/common/gobuf v0.0.2 gitter.top/common/gobuf v0.0.3
gopkg.in/yaml.v3 v3.0.1 gopkg.in/yaml.v3 v3.0.1
) )

View File

@ -10,7 +10,7 @@ option go_package = "{{.Name}}/gen;genv1";
// @route_group: true // @route_group: true
// @base_url: /v1/file // @base_url: /v1/file
// @gen_to: ./services/controller/v1/file_controller.go // @gen_to: ./services/controller/v1/file_controller.go
// @rpc_to: ./services/rpc/v1/file_impl.go // @rpc_to: ./services/microservice/v1/file_service.go
service FileService { service FileService {
// @desc: 列表 // @desc: 列表
// @author: Young Xu // @author: Young Xu