Files
Kadr/kadr
T
2026-03-20 10:57:27 +10:00

15 lines
294 B
Python
Executable File

#!/usr/bin/env python3
"""Dev launcher for Kadr."""
import sys
from pathlib import Path
# All pycache in one place
sys.pycache_prefix = str(Path(__file__).resolve().parent / ".pycache")
sys.path.insert(0, str(Path(__file__).resolve().parent / "src"))
from kadr.__main__ import main
main()