Restructure into full project layout

This commit is contained in:
2026-06-16 23:06:16 -06:00
parent de4862b2d1
commit 57765496a6
74 changed files with 4441 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
import redis.asyncio as redis
from app.core.config import settings
_redis = None
async def get_redis():
global _redis
if _redis is None:
_redis = redis.from_url(settings.REDIS_URL, decode_responses=True)
return _redis