aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_core
diff options
context:
space:
mode:
authorGravatar shtlrs <[email protected]>2024-03-18 13:05:02 +0100
committerGravatar shtlrs <[email protected]>2024-03-18 13:05:46 +0100
commitdfda554e7a10445044e928313a1bc1fb7f6ccec3 (patch)
tree1c564b6fb685e4b60b50191d2b3315f2d8778325 /pydis_core
parentexpose a way for registering the command error manager (diff)
reflect changes in changelog
Diffstat (limited to 'pydis_core')
-rw-r--r--pydis_core/utils/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pydis_core/utils/__init__.py b/pydis_core/utils/__init__.py
index 72531787..6d2945b4 100644
--- a/pydis_core/utils/__init__.py
+++ b/pydis_core/utils/__init__.py
@@ -1,5 +1,8 @@
"""Useful utilities and tools for Discord bot development."""
+import pydis_core.utils.error_handling.commands as command_error_handling_module
+import pydis_core.utils.error_handling.commands.abc as error_handling_abstractions
+import pydis_core.utils.error_handling.commands.manager as command_error_manager
from pydis_core.utils import (
_monkey_patches,
caching,
@@ -44,6 +47,9 @@ __all__ = [
channel,
checks,
commands,
+ command_error_handling_module,
+ error_handling_abstractions,
+ command_error_manager,
cooldown,
error_handling,
function,