Files
compass_backoffice/app/channels/__init__.py
2026-06-13 15:40:44 -03:00

11 lines
447 B
Python

"""Channel adapters owned by the application domain.
The framework ChannelGateway remains the canonical normalization boundary.
Domain REST contracts should enter the backend through adapters in this package
instead of calling workflow runtimes directly from FastAPI routes.
"""
from .backoffice_rest_adapter import BackofficeChannelEnvelope, BackofficeRestChannelAdapter
__all__ = ["BackofficeChannelEnvelope", "BackofficeRestChannelAdapter"]