5 lines
239 B
Python
5 lines
239 B
Python
"""Re-export canonical models from kab_ingestion.models for backward compatibility."""
|
|
from kab_ingestion.models import IngestionRequest, IngestionResult, SourceDocument
|
|
|
|
__all__ = ["IngestionRequest", "IngestionResult", "SourceDocument"]
|