Initial commit: Kadr v2.0.0

This commit is contained in:
2026-03-20 10:57:27 +10:00
commit 3508a7c5dd
35 changed files with 2226 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/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()