diff --git a/rndstatus/__init__.py b/rndstatus/__init__.py new file mode 100644 index 0000000..ce78545 --- /dev/null +++ b/rndstatus/__init__.py @@ -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)