feat: new parser & generator

This commit is contained in:
2025-03-09 13:12:12 +07:00
parent 70fc3345d8
commit a3283b9a57
25 changed files with 372 additions and 301 deletions

14
utils/get_models_path.go Normal file
View File

@@ -0,0 +1,14 @@
package utils
import (
"log"
"os"
)
func GetModelsPath() string {
if len(os.Args) == 1 {
log.Fatalf("Please provide path to models.go")
}
return os.Args[1]
}