184df1594e
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
342 B
Python
17 lines
342 B
Python
"""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
|