11 lines
184 B
Python
11 lines
184 B
Python
![]() |
from slackclient import SlackClient
|
||
|
from rtmbot import RtmBot
|
||
|
|
||
|
client = None
|
||
|
|
||
|
def init(config):
|
||
|
global client
|
||
|
bot = RtmBot(config)
|
||
|
client = bot.slack_client
|
||
|
return bot
|