diff --git a/partycrash/__init__.py b/partycrash/__init__.py new file mode 100644 index 0000000..bc059e7 --- /dev/null +++ b/partycrash/__init__.py @@ -0,0 +1,6 @@ +from discord.ext import commands +from .partycrash import PartyCrash + + +def setup(bot: commands.Bot): + bot.add_cog(PartyCrash(bot))