librespot-python/librespot/audio/storage/AudioFileStreaming.py

13 lines
231 B
Python
Raw Normal View History

2021-02-24 00:46:59 +01:00
from __future__ import annotations
import typing
if typing.TYPE_CHECKING:
from librespot.core.Session import Session
class AudioFileStreaming:
cache_handler = None
def __init__(self, session: Session):
pass