1
0
mirror of synced 2025-02-02 12:47:25 +01:00

11 lines
339 B
Python
Raw Normal View History

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