mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-22 01:22:34 +00:00
7 lines
198 B
Python
7 lines
198 B
Python
"""Module to define the data source connectors."""
|
|
|
|
from .base import BaseConnector # noqa: F401
|
|
from .rdbms.base import RDBMSConnector # noqa: F401
|
|
|
|
__ALL__ = ["BaseConnector", "RDBMSConnector"]
|