mirror of
https://github.com/opbnq-q/nto-cli.git
synced 2025-12-06 21:30:34 +07:00
15 lines
168 B
Go
15 lines
168 B
Go
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]
|
|
}
|