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
|