mirror of https://github.com/stijndcl/didier
21 lines
407 B
Python
21 lines
407 B
Python
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
|
|
|
|
|
|
def setup(client):
|
|
client.add_cog(TestCog(client))
|