9 lines
176 B
Python
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()
|