diff --git a/app/core/redis.py b/app/core/redis.py new file mode 100644 index 0000000..b4d9280 --- /dev/null +++ b/app/core/redis.py @@ -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"]