mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
7 lines
177 B
Python
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) |