first push

This commit is contained in:
Chevallier
2026-06-12 18:16:58 +02:00
commit a7d8914e25
53 changed files with 1655 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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