fix: grammar error

This commit is contained in:
2025-02-16 22:28:50 +07:00
parent c1b1d2d5f1
commit b9948c3a41

View File

@@ -27,7 +27,7 @@ func ImplementServices(mainPkgDir string, reimplement bool) {
func main() {
log.SetFlags(0)
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()
ImplementServices(*projectPath, *reimplement)
}