6 lines
209 B
Python
6 lines
209 B
Python
"""Ingestion domain migrated into the application package."""
|
|
|
|
from .domain.models import IngestionRequest, IngestionResult, SourceDocument
|
|
|
|
__all__ = ["IngestionRequest", "IngestionResult", "SourceDocument"]
|