mirror of
https://github.com/borbann-platform/backend-api.git
synced 2025-12-18 20:24:05 +01:00
16 lines
438 B
Python
16 lines
438 B
Python
from .core import Ingestor
|
|
from .ingestors import IngestionMethod, SimpleIngestionStrategy, MLIngestionStrategy
|
|
from .adapters.api_adapter import ApiAdapter
|
|
from .adapters.file_adapter import FileAdapter
|
|
from .adapters.web_scraper_adapter import WebScraperAdapter
|
|
|
|
__all__ = [
|
|
"Ingestor",
|
|
"ApiAdapter",
|
|
"FileAdapter",
|
|
"WebScraperAdapter",
|
|
"IngestionMethod",
|
|
"SimpleIngestionStrategy",
|
|
"MLIngestionStrategy",
|
|
]
|