[V3 Rndstatus] Initial commit

This commit is contained in:
aikaterna
2018-07-15 16:40:40 -07:00
committed by GitHub
parent 58bfd8bb83
commit 9649da4392

7
rndstatus/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from .rndstatus import RndStatus
def setup(bot):
n = RndStatus(bot)
bot.add_listener(n.switch_status, "on_message")
bot.add_cog(n)