mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
26 lines
645 B
Python
26 lines
645 B
Python
########## SENSITIVE SECTION WARNING ###########
|
|
################################################
|
|
# Any edits of any of the exported names #
|
|
# may result in a breaking change. #
|
|
# Ensure no names are removed without warning. #
|
|
################################################
|
|
|
|
### DEP-WARN: Check this *every* discord.py update
|
|
from discord.app_commands.checks import (
|
|
bot_has_permissions,
|
|
cooldown,
|
|
dynamic_cooldown,
|
|
has_any_role,
|
|
has_role,
|
|
has_permissions,
|
|
)
|
|
|
|
__all__ = (
|
|
"bot_has_permissions",
|
|
"cooldown",
|
|
"dynamic_cooldown",
|
|
"has_any_role",
|
|
"has_role",
|
|
"has_permissions",
|
|
)
|