aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/template.py
blob: a2c3bb7a3cb4495452d4a6ee3877af4d41eb5c7a (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))