Files
ARC/backend/app/repositories/redis_repository.py
Chevallier a7d8914e25 first push
2026-06-12 18:16:58 +02:00

13 lines
231 B
Python

from app.core.config import settings
class RedisRepository:
"""
Stub minimal Redis (optionnel).
"""
def __init__(self):
self.url = settings.redis_url
async def ping(self) -> bool:
return True