Change Directory

This commit is contained in:
kokarare1212
2021-02-25 08:07:17 +09:00
parent 01dae8ada4
commit 8daf68831e
133 changed files with 221 additions and 38 deletions

13
librespot/cache/CacheManager.py vendored Normal file
View File

@@ -0,0 +1,13 @@
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

1
librespot/cache/__init__.py vendored Normal file
View File

@@ -0,0 +1 @@
from librespot.cache.CacheManager import CacheManager