Spaces:
Sleeping
Sleeping
File size: 149 Bytes
51c39cf | 1 2 3 4 5 6 7 8 9 | from functools import lru_cache
from ..services import SessionStore
@lru_cache
def get_session_store() -> SessionStore:
return SessionStore()
|