First commit

This commit is contained in:
Twentysix
2017-04-27 00:49:27 +02:00
parent 6251c585e4
commit 2063decbe7
20 changed files with 994 additions and 0 deletions

7
core/utils/checks.py Normal file
View File

@@ -0,0 +1,7 @@
from discord.ext import commands
def is_owner(**kwargs):
async def check(ctx):
return await ctx.bot.is_owner(ctx.author, **kwargs)
return commands.check(check)