feat(media): Protocol, Factory und Noop-Controller

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-15 18:50:55 +02:00
parent 71602f0ece
commit 184df1594e
4 changed files with 91 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""Linux-MPRIS-Implementierung. Vollständige Logik folgt in späteren Tasks."""
import logging
logger = logging.getLogger(__name__)
class MprisController:
def __init__(self) -> None:
self._paused: list[str] = []
async def pause(self) -> None:
return None
async def resume(self) -> None:
return None