Files
planer/backend/__main__.py
2026-07-22 16:12:23 +02:00

9 lines
176 B
Python

import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent)) # `python -m backend` von der Wurzel
from cli import main # noqa: E402
main()