Files
librespot-python/librespot/player/mixing/AudioSink.py
2021-03-08 12:18:47 +09:00

12 lines
280 B
Python

from __future__ import annotations
from librespot.player import PlayerConfiguration
class AudioSink:
def __init__(self, conf: PlayerConfiguration, listener: AudioSink.Listener):
pass
class Listener:
def sink_error(self, ex: Exception):
pass