From e89b8318c5d08838540f0a2965ad1af20bb44d7c Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Mon, 9 Jul 2018 11:55:52 -0700 Subject: [PATCH] [V3 Partycrash] Initial commit --- partycrash/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 partycrash/__init__.py 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))