aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/template.py
blob: 18b3f21c01fc0b8499ffa195c70dcd20ec32b28a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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))