feat: add qq channel

This commit is contained in:
zhayujie
2026-03-17 15:43:04 +08:00
parent 46d97fd57d
commit 005a0e1bad
8 changed files with 854 additions and 0 deletions

View File

@@ -36,6 +36,9 @@ def create_channel(channel_type) -> Channel:
elif channel_type == const.WECOM_BOT:
from channel.wecom_bot.wecom_bot_channel import WecomBotChannel
ch = WecomBotChannel()
elif channel_type == const.QQ:
from channel.qq.qq_channel import QQChannel
ch = QQChannel()
else:
raise RuntimeError
ch.channel_type = channel_type