7 lines
184 B
Python
7 lines
184 B
Python
"""Concrete ingestion connectors."""
|
|
|
|
from .github import GitHubSCMConnector
|
|
from .sharepoint import SharePointCMSConnector
|
|
|
|
__all__ = ["GitHubSCMConnector", "SharePointCMSConnector"]
|