Files
ARC/backend/app/repositories/redis_repository.py

13 lines
231 B
Python
Raw Permalink Normal View History

2026-06-12 18:16:58 +02:00
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