7 lines
93 B
Python
7 lines
93 B
Python
|
# third-party imports
|
||
|
from redis import Redis
|
||
|
|
||
|
|
||
|
class InMemoryStore:
|
||
|
cache: Redis = None
|