mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
11 lines
183 B
Python
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",
|
|
]
|