mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-23 12:21:08 +00:00
6 lines
154 B
Python
6 lines
154 B
Python
"""This module is the client of the dbgpt package."""
|
|
|
|
from .client import Client, ClientException # noqa: F401
|
|
|
|
__ALL__ = ["Client", "ClientException"]
|