format coding style (#969)

This commit is contained in:
Kevin Wan
2021-08-27 23:09:47 +08:00
committed by GitHub
parent 3203f8e06b
commit 519db812b4
2 changed files with 4 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ func (g *RPCGenerator) Generate(src, target string, protoImportPath []string, go
return err
}
dirCtx, err := mkdir(projectCtx, proto,g.cfg)
dirCtx, err := mkdir(projectCtx, proto, g.cfg)
if err != nil {
return err
}

View File

@@ -1,14 +1,14 @@
package generator
import (
conf "github.com/tal-tech/go-zero/tools/goctl/config"
"github.com/tal-tech/go-zero/tools/goctl/util/format"
"path/filepath"
"strings"
conf "github.com/tal-tech/go-zero/tools/goctl/config"
"github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
"github.com/tal-tech/go-zero/tools/goctl/util"
"github.com/tal-tech/go-zero/tools/goctl/util/ctx"
"github.com/tal-tech/go-zero/tools/goctl/util/format"
"github.com/tal-tech/go-zero/tools/goctl/util/stringx"
)
@@ -61,7 +61,7 @@ func mkdir(ctx *ctx.ProjectContext, proto parser.Proto, cfg *conf.Config) (DirCo
serverDir := filepath.Join(internalDir, "server")
svcDir := filepath.Join(internalDir, "svc")
pbDir := filepath.Join(ctx.WorkDir, proto.GoPackage)
sName,err:=format.FileNamingFormat(cfg.NamingFormat,proto.Service.Name)
sName, err := format.FileNamingFormat(cfg.NamingFormat, proto.Service.Name)
if err != nil {
return nil, err
}