1
0
This commit is contained in:
Aiden
2026-05-27 11:50:10 +10:00
parent 0d099235c5
commit c0304c575c
55 changed files with 26035 additions and 16 deletions

16
scripts/ccu_emulator.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
"""Run the modular fake CCU."""
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
from ccu_emulator.cli import main
if __name__ == "__main__":
raise SystemExit(main())