ubot2/client.py

11 lines
184 B
Python
Raw Normal View History

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