ubot2/client.py
Philip Yun 0285f67db2 Update client.py
small bug with global extension
2016-08-07 01:46:20 -07:00

10 lines
202 B
Python

from slackclient import SlackClient
from rtmbot import RtmBot
slack_client = None
def init(config):
global slack_client
bot = RtmBot(config)
slack_client = bot.slack_client
return bot