Selaa lähdekoodia

chore: reformat code (#2903)

Kevin Wan 2 vuotta sitten
vanhempi
sitoutus
03fe036204

+ 0 - 1
tools/goctl/api/cmd.go

@@ -2,7 +2,6 @@ package api
 
 import (
 	"github.com/spf13/cobra"
-
 	"github.com/zeromicro/go-zero/tools/goctl/api/apigen"
 	"github.com/zeromicro/go-zero/tools/goctl/api/dartgen"
 	"github.com/zeromicro/go-zero/tools/goctl/api/docgen"

+ 0 - 1
tools/goctl/api/tsgen/gen.go

@@ -7,7 +7,6 @@ import (
 	"github.com/logrusorgru/aurora"
 	"github.com/spf13/cobra"
 	"github.com/zeromicro/go-zero/core/logx"
-
 	"github.com/zeromicro/go-zero/tools/goctl/api/parser"
 	"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
 )

+ 1 - 0
tools/goctl/api/tsgen/genrequest.go

@@ -21,5 +21,6 @@ func genRequest(dir string) error {
 	if pathx.FileExists(filename) {
 		return nil
 	}
+
 	return os.WriteFile(filename, []byte(requestTemplate), 0644)
 }

+ 2 - 2
tools/goctl/api/tsgen/request.ts

@@ -16,7 +16,6 @@ export type Method =
 
 /**
  * Parse route parameters for responseType
- *
  */
 const reg = /:[a-z|A-Z]+/g;
 
@@ -75,6 +74,7 @@ export async function request({
         // @ts-ignore
         ...config
     });
+
     return response.json();
 }
 
@@ -123,4 +123,4 @@ export const webapi = {
     }
 };
 
-export default webapi
+export default webapi