ubot2/client.py
philipyun103 9f71ca3a36 Documentation and Naming
Update Naming conventions and Docs
2016-08-07 01:09:23 -07:00

10 lines
196 B
Python

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