mirror of
https://github.com/hoshikawa2/compass_backoffice.git
synced 2026-07-09 13:54:20 +00:00
11 lines
447 B
Python
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"]
|