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.
|
- """
- channel factory
- """
-
- from channel.wechat.wechat_channel import WechatChannel
-
- def create_channel(channel_type):
- """
- create a channel instance
- :param channel_type: channel type code
- :return: channel instance
- """
- if channel_type == 'wx':
- return WechatChannel()
- raise RuntimeError
|