10 lines
251 B
Python
10 lines
251 B
Python
"""Настройка асинхронного Redis клиента."""
|
|
|
|
from redis.asyncio import Redis
|
|
|
|
from core.config import get_settings
|
|
|
|
settings = get_settings()
|
|
|
|
redis_client: Redis = Redis.from_url(settings.redis_url, decode_responses=True)
|