Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- """
- channel factory
- """
-
- def create_channel(channel_type):
- """
- create a channel instance
- :param channel_type: channel type code
- :return: channel instance
- """
- if channel_type == 'wx':
- from channel.wechat.wechat_channel import WechatChannel
- return WechatChannel()
- elif channel_type == 'wxy':
- from channel.wechat.wechaty_channel import WechatyChannel
- return WechatyChannel()
- elif channel_type == 'terminal':
- from channel.terminal.terminal_channel import TerminalChannel
- return TerminalChannel()
- raise RuntimeError
|