Files

10 lines
216 B
Python
Raw Permalink Normal View History

"""No-Op-Fallback für Plattformen ohne MPRIS oder wenn das Feature aus ist."""
class NoopController:
async def pause(self) -> None:
return None
async def resume(self) -> None:
return None