11 lines
181 B
Python
11 lines
181 B
Python
|
from typing import Dict, Any
|
||
|
|
||
|
from bemani.data import Data
|
||
|
|
||
|
|
||
|
class BishiBashiCache:
|
||
|
|
||
|
@classmethod
|
||
|
def preload(cls, data: Data, config: Dict[str, Any]) -> None:
|
||
|
pass
|