11 lines
368 B
Python
11 lines
368 B
Python
|
|
"""hms_launcher – Supervisor/Launcher (PLAN.md §6.1A, §9).
|
|||
|
|
|
|||
|
|
Phase-0-Umfang: portable Pfadauflösung, Portwahl, GStreamer-Environment,
|
|||
|
|
kontrollierter Start von Control Core und Renderer. Vollständige
|
|||
|
|
Heartbeat-/Crash-Recovery-Logik folgt in Phase 1 (§31).
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
from hms_launcher.paths import AppPaths, resolve_app_root
|
|||
|
|
|
|||
|
|
__all__ = ["AppPaths", "resolve_app_root"]
|