Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

15 lines
317B

  1. """
  2. channel factory
  3. """
  4. from channel.wechat.wechat_channel import WechatChannel
  5. def create_channel(channel_type):
  6. """
  7. create a channel instance
  8. :param channel_type: channel type code
  9. :return: channel instance
  10. """
  11. if channel_type == 'wx':
  12. return WechatChannel()
  13. raise RuntimeError