Files

5 lines
157 B
Python
Raw Permalink Normal View History

"""Redis access shim — re-exports get_redis from app.core.auth for backward compatibility."""
from app.core.auth import get_redis
__all__ = ["get_redis"]