18 lines
311 B
Python
Executable File
18 lines
311 B
Python
Executable File
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
|
|
ROOT_DIR = Path(__file__).resolve().parent
|
|
GENERATOR_DIR = ROOT_DIR / "generator"
|
|
|
|
sys.path.insert(0, str(GENERATOR_DIR))
|
|
|
|
from cli import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main(sys.argv[1:]))
|