2020-10-13 21:02:40 +02:00
|
|
|
from discord.ext import commands
|
|
|
|
from functions import checks
|
|
|
|
|
|
|
|
|
|
|
|
class TestCog(commands.Cog):
|
|
|
|
|
|
|
|
def __init__(self, client):
|
|
|
|
self.client = client
|
|
|
|
|
|
|
|
# All commands in this Cog should only be accessible to me
|
|
|
|
def cog_check(self, ctx):
|
|
|
|
return checks.isMe(ctx)
|
|
|
|
|
|
|
|
@commands.command()
|
|
|
|
async def test(self, ctx):
|
|
|
|
pass
|
|
|
|
|
2020-11-29 19:20:55 +01:00
|
|
|
@test.error
|
|
|
|
async def test_handler(self, ctx, error):
|
|
|
|
raise error
|
|
|
|
|
2020-10-13 21:02:40 +02:00
|
|
|
|
|
|
|
def setup(client):
|
|
|
|
client.add_cog(TestCog(client))
|