1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-07-12 21:33:26 +00:00
voice_assistant/src/assistant/lib/clients/__init__.py
2023-10-04 23:38:52 +03:00

8 lines
148 B
Python

from .http_client import AsyncHttpClient
from .postgres import AsyncPostgresClient
__all__ = [
"AsyncHttpClient",
"AsyncPostgresClient",
]