13 lines
231 B
Python
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 |