Files
agent_delta/backend/app/clients/__init__.py
T
2026-06-15 14:22:07 +08:00

11 lines
183 B
Python

"""External service clients.
This module contains thin wrappers around external services like Redis.
"""
from app.clients.redis import RedisClient
__all__ = [
"RedisClient",
]