11 lines
279 B
Python
11 lines
279 B
Python
from .base import BaseConnector
|
|
from .google_drive import GoogleDriveConnector
|
|
from .sharepoint import SharePointConnector
|
|
from .onedrive import OneDriveConnector
|
|
|
|
__all__ = [
|
|
"BaseConnector",
|
|
"GoogleDriveConnector",
|
|
"SharePointConnector",
|
|
"OneDriveConnector",
|
|
]
|