mirror of
https://github.com/countbot-ai/CountBot.git
synced 2026-09-14 20:46:47 +08:00
ba30cddd78
- 渠道基类与统一管理器 - 飞书(WebSocket 长连接) - 钉钉(Stream 模式) - QQ(官方 SDK) - Telegram(Long Polling) - 微信(公众号 API) - 统一消息处理器(handler.py)
7 lines
230 B
Python
7 lines
230 B
Python
"""多渠道支持模块 - 提供统一的消息总线架构"""
|
|
|
|
from backend.modules.channels.base import BaseChannel
|
|
from backend.modules.channels.manager import ChannelManager
|
|
|
|
__all__ = ["BaseChannel", "ChannelManager"]
|