first commit
Some checks failed
CI / backend (push) Has been cancelled
CI / frontend (push) Has been cancelled

This commit is contained in:
2026-07-23 02:38:05 +03:00
commit 8757bec8ac
335 changed files with 61527 additions and 0 deletions

9
backend/core/redis.py Normal file
View File

@@ -0,0 +1,9 @@
"""Настройка асинхронного 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)