mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-05-04 12:35:18 -05:00
11 lines
328 B
Python
11 lines
328 B
Python
from bemani.common import cache
|
|
from bemani.data import Config, Data
|
|
from bemani.frontend.museca.museca import MusecaFrontend
|
|
|
|
|
|
class MusecaCache:
|
|
@classmethod
|
|
def preload(cls, data: Data, config: Config) -> None:
|
|
frontend = MusecaFrontend(data, config, cache)
|
|
frontend.get_all_songs(force_db_load=True)
|