aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r--botcore/__init__.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/botcore/__init__.py b/botcore/__init__.py
index c582d0df..f32e6bf2 100644
--- a/botcore/__init__.py
+++ b/botcore/__init__.py
@@ -1,9 +1,16 @@
-from botcore import (
- regex,
-)
+"""Useful utilities and tools for discord bot development."""
+
+from botcore import (caching, channel, extensions, exts, loggers, members, regex, scheduling)
__all__ = [
+ caching,
+ channel,
+ extensions,
+ exts,
+ loggers,
+ members,
regex,
+ scheduling,
]
__all__ = list(map(lambda module: module.__name__, __all__))