fix: add app/core/redis.py shim re-exporting get_redis from auth

This commit is contained in:
Agent Zero
2026-07-30 02:01:28 +02:00
parent 25e70cf749
commit 88bcbfa9a8
+4
View File
@@ -0,0 +1,4 @@
"""Redis access shim — re-exports get_redis from app.core.auth for backward compatibility."""
from app.core.auth import get_redis
__all__ = ["get_redis"]