aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/template.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/bot/cogs/template.py b/bot/cogs/template.py
new file mode 100644
index 00000000..a2c3bb7a
--- /dev/null
+++ b/bot/cogs/template.py
@@ -0,0 +1,14 @@
+from discord.ext import commands
+
+
+class Template:
+ def __init__(self, bot):
+ self.bot = bot
+
+ @commands.command()
+ async def template(self, ctx):
+ await ctx.send('It indeed is a template cog!')
+
+
+def setup(bot):
+ bot.add_cog(Template(bot))