This commit is contained in:
finalnode
2026-05-16 19:36:35 +02:00
parent ecdd107350
commit 08bcb91b5c
14 changed files with 117 additions and 12 deletions

17
havelseiten Executable file
View 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:]))