DB-GPT/dbgpt/client/__init__.py
2024-03-21 09:58:32 +08:00

6 lines
154 B
Python

"""This module is the client of the dbgpt package."""
from .client import Client, ClientException # noqa: F401
__ALL__ = ["Client", "ClientException"]