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

12 lines
280 B
Python
Raw Normal View History

2021-02-25 00:07:17 +01:00
from __future__ import annotations
from librespot.player import PlayerConfiguration
class AudioSink:
2021-04-10 01:16:18 +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