aboutsummaryrefslogtreecommitdiffstats
path: root/botcore
diff options
context:
space:
mode:
authorGravatar Izan <[email protected]>2022-07-15 21:56:34 +0100
committerGravatar Izan <[email protected]>2022-07-15 21:56:34 +0100
commitd1ec5b0a78d8bc2a608b61585eab3b2e3c44de24 (patch)
treeda771b3744be574a5822781ea7db313e310d6c6a /botcore
parentAdd `clean_text_or_reply` util. (diff)
Add commands.py to __init__.py
Diffstat (limited to 'botcore')
-rw-r--r--botcore/utils/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/botcore/utils/__init__.py b/botcore/utils/__init__.py
index fa389743..2e493374 100644
--- a/botcore/utils/__init__.py
+++ b/botcore/utils/__init__.py
@@ -1,6 +1,6 @@
"""Useful utilities and tools for Discord bot development."""
-from botcore.utils import _monkey_patches, caching, channel, logging, members, regex, scheduling
+from botcore.utils import _monkey_patches, caching, channel, commands, logging, members, regex, scheduling
from botcore.utils._extensions import unqualify
@@ -24,6 +24,7 @@ __all__ = [
apply_monkey_patches,
caching,
channel,
+ commands,
logging,
members,
regex,