mindnet/app/core/ingestion/__init__.py
2025-12-27 10:30:09 +01:00

9 lines
355 B
Python

"""
FILE: app/core/ingestion/__init__.py
DESCRIPTION: Package-Einstiegspunkt für Ingestion. Exportiert den IngestionService.
VERSION: 2.13.0
"""
from .ingestion_processor import IngestionService
from .ingestion_utils import extract_json_from_response, load_type_registry
__all__ = ["IngestionService", "extract_json_from_response", "load_type_registry"]