This commit is contained in:
2026-06-13 15:40:44 -03:00
parent 0714b503d1
commit 1f1188dd4e
181 changed files with 1345 additions and 849 deletions

10
app/channels/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
"""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"]