6 lines
180 B
Python
6 lines
180 B
Python
"""Typed ingestion domain contracts."""
|
|
|
|
from .models import IngestionRequest, IngestionResult, SourceDocument
|
|
|
|
__all__ = ["IngestionRequest", "IngestionResult", "SourceDocument"]
|