2017-04-28 09:16:10 +02:00

7 lines
177 B
Python

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)