13 lines
165 B
Python
13 lines
165 B
Python
from aioredis import create_redis_pool, Redis
|
|
|
|
|
|
class RedisBase:
|
|
client: Redis = None
|
|
|
|
|
|
rdb = RedisBase()
|
|
|
|
|
|
def get_redis_pool() -> Redis:
|
|
return rdb.client
|