Files
AIRegulation-DocAnalysis/backend/app/application/documents/__init__.py

8 lines
307 B
Python

"""Initialize the app.application.documents package."""
from .services import DocumentCommandService, DocumentProcessResult, DocumentQueryService
# Keep package boundaries explicit so backend imports stay predictable.
__all__ = ["DocumentCommandService", "DocumentProcessResult", "DocumentQueryService"]