Documentation and Naming

Update Naming conventions and Docs
This commit is contained in:
philipyun103 2016-08-07 01:09:23 -07:00
parent 1fb557b178
commit 9f71ca3a36
3 changed files with 16 additions and 3 deletions

View file

@ -1,10 +1,10 @@
from slackclient import SlackClient
from rtmbot import RtmBot
client = None
slack_client = None
def init(config):
global client
bot = RtmBot(config)
client = bot.slack_client
slack_client = bot.slack_client
return bot