feat: Add request.ts (#2901)

* Add request.ts

* Update comments

* Refactor request filename
This commit is contained in:
anqiansong
2023-02-20 22:54:25 +08:00
committed by GitHub
parent 64ab00e8e3
commit 03d073a884
5 changed files with 159 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
package tsgen
import (
_ "embed"
"os"
"path/filepath"
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
)
//go:embed request.ts
var requestTemplate string
func genRequest(dir string) error {
abs, err := filepath.Abs(dir)
if err != nil {
return err
}
filename := filepath.Join(abs, "gocliRequest.ts")
if pathx.FileExists(filename) {
return nil
}
return os.WriteFile(filename, []byte(requestTemplate), 0644)
}