1
0
mirror of synced 2024-12-01 00:57:18 +01:00
bemaniutils/bemani/frontend/jubeat/cache.py

11 lines
328 B
Python

from bemani.common import cache
from bemani.data import Config, Data
from bemani.frontend.jubeat.jubeat import JubeatFrontend
class JubeatCache:
@classmethod
def preload(cls, data: Data, config: Config) -> None:
frontend = JubeatFrontend(data, config, cache)
frontend.get_all_songs(force_db_load=True)