librespot-python/librespot/cache/CacheManager.py

14 lines
260 B
Python
Raw Normal View History

2021-02-24 00:46:59 +01:00
from __future__ import annotations
from librespot.core import Session
class CacheManager:
CLEAN_UP_THRESHOLD = 604800000
HEADER_TIMESTAMP = 254
HEADER_HASH = 253
parent: str
def __init__(self, conf: Session.Configuration):
pass