Quellcode durchsuchen

format coding style (#969)

Kevin Wan vor 3 Jahren
Ursprung
Commit
519db812b4
2 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen
  1. 1 1
      tools/goctl/rpc/generator/gen.go
  2. 3 3
      tools/goctl/rpc/generator/mkdir.go

+ 1 - 1
tools/goctl/rpc/generator/gen.go

@@ -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
 	}

+ 3 - 3
tools/goctl/rpc/generator/mkdir.go

@@ -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
 	}