ForcePilot/backend/package/yuxi/channel/message/__init__.py

8 lines
329 B
Python
Raw Normal View History

2026-07-15 12:30:58 +08:00
"""多渠道网关入站消息处理模块。"""
from yuxi.channel.message.dedupe import MessageDeduper
from yuxi.channel.message.dispatcher import ChannelGateway
from yuxi.channel.message.models import InboundMessage, RunAcceptedResponse
__all__ = ["ChannelGateway", "MessageDeduper", "InboundMessage", "RunAcceptedResponse"]