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 441B

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