10 lines
170 B
Python
10 lines
170 B
Python
|
from discord.ext import commands
|
||
|
|
||
|
|
||
|
class DisabledCommandByServerOwner(commands.CheckFailure):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class DisabledCommandByBotOwner(commands.CheckFailure):
|
||
|
pass
|