1 Commits

Author SHA1 Message Date
b9948c3a41 fix: grammar error 2025-02-16 22:28:50 +07:00

View File

@@ -27,7 +27,7 @@ func ImplementServices(mainPkgDir string, reimplement bool) {
func main() { func main() {
log.SetFlags(0) log.SetFlags(0)
projectPath := flag.String("p", ".", "project path") projectPath := flag.String("p", ".", "project path")
reimplement := flag.Bool("f", false, "pass -f to allow tool to overwrite exist functions and service structure") reimplement := flag.Bool("f", false, "pass -f to allow tool to overwrite existing functions and service structure")
flag.Parse() flag.Parse()
ImplementServices(*projectPath, *reimplement) ImplementServices(*projectPath, *reimplement)
} }