librespot-python/librespot/player/mixing/AudioSink.py

14 lines
298 B
Python
Raw Normal View History

2021-02-25 00:07:17 +01:00
from __future__ import annotations
2021-04-10 01:16:20 +02:00
2021-02-25 00:07:17 +01:00
from librespot.player import PlayerConfiguration
class AudioSink:
2021-04-10 01:16:32 +02:00
def __init__(self, conf: PlayerConfiguration,
listener: AudioSink.Listener):
2021-02-25 00:07:17 +01:00
pass
class Listener:
def sink_error(self, ex: Exception):
pass