10 lines
231 B
Python
10 lines
231 B
Python
|
|
import redis.asyncio as aioredis
|
||
|
|
|
||
|
|
from app.core.config import settings
|
||
|
|
|
||
|
|
redis_client: aioredis.Redis = aioredis.from_url(settings.REDIS_URL, decode_responses=True)
|
||
|
|
|
||
|
|
|
||
|
|
async def get_redis() -> aioredis.Redis:
|
||
|
|
return redis_client
|