Files
whisper-local/whisper_local/media/_noop.py
T

10 lines
216 B
Python
Raw 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