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