From 907186da12554bac7dd0971118ab0d11a55cf579 Mon Sep 17 00:00:00 2001 From: Marko Kovačević <37017937+markylon@users.noreply.github.com> Date: Tue, 2 Oct 2018 20:47:43 +0200 Subject: Missed cogs directory. --- bot/cogs/template.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bot/cogs/template.py (limited to 'bot/cogs/template.py') 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)) -- cgit v1.2.3