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.py 455B

il y a 1 an
il y a 1 an
1234567891011121314151617
  1. """
  2. channel factory
  3. """
  4. def create_channel(channel_type):
  5. """
  6. create a channel instance
  7. :param channel_type: channel type code
  8. :return: channel instance
  9. """
  10. if channel_type == 'wx':
  11. from channel.wechat.wechat_channel import WechatChannel
  12. return WechatChannel()
  13. elif channel_type == 'wxy':
  14. from channel.wechat.wechaty_channel import WechatyChannel
  15. return WechatyChannel()
  16. raise RuntimeError