plugins: support wechaty channel
parent
02cd553990
commit
cda9d5873d
2
app.py
2
app.py
|
|
@ -14,7 +14,7 @@ def run():
|
|||
# create channel
|
||||
channel_name=conf().get('channel_type', 'wx')
|
||||
channel = channel_factory.create_channel(channel_name)
|
||||
if channel_name=='wx':
|
||||
if channel_name in ['wx','wxy']:
|
||||
PluginManager().load_plugins()
|
||||
|
||||
# startup channel
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@ class WechatyChannel(ChatChannel):
|
|||
config = conf()
|
||||
token = config.get('wechaty_puppet_service_token')
|
||||
os.environ['WECHATY_PUPPET_SERVICE_TOKEN'] = token
|
||||
os.environ['WECHATY_LOG']="warn"
|
||||
# os.environ['WECHATY_PUPPET_SERVICE_ENDPOINT'] = '127.0.0.1:9001'
|
||||
self.bot = Wechaty()
|
||||
self.bot.on('login', self.on_login)
|
||||
self.bot.on('message', self.on_message)
|
||||
|
|
|
|||
Loading…
Reference in New Issue