feat: add support for WeChat integration via the wchatferry

This commit is contained in:
josephier
2025-02-14 00:25:09 +08:00
parent 436c038a2f
commit 323aebd1be
5 changed files with 292 additions and 0 deletions

View File

@@ -18,6 +18,9 @@ def create_channel(channel_type) -> Channel:
elif channel_type == "wxy":
from channel.wechat.wechaty_channel import WechatyChannel
ch = WechatyChannel()
elif channel_type == "wcf":
from channel.wechat.wcf_channel import WechatfChannel
ch = WechatfChannel()
elif channel_type == "terminal":
from channel.terminal.terminal_channel import TerminalChannel
ch = TerminalChannel()