b881dacdf0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
272 B
Python
14 lines
272 B
Python
"""Linux-MPRIS-Implementierung. Vollständige Logik folgt in späteren Tasks."""
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class MprisController:
|
|
async def pause(self) -> None:
|
|
return None
|
|
|
|
async def resume(self) -> None:
|
|
return None
|