.
This commit is contained in:
17
havelseiten
Executable file
17
havelseiten
Executable file
@ -0,0 +1,17 @@
|
||||
#!/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:]))
|
||||
Reference in New Issue
Block a user