aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/__init__.py
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-02-21 12:58:10 +0000
committerGravatar Chris Lovering <[email protected]>2022-02-21 12:58:10 +0000
commitbcdb3a77690e1e224225627f085d86689353e1cb (patch)
treebb21c2fa12e06b9c84142ddd4f1f4260f078b185 /botcore/__init__.py
parentModify Autodoc Formatting (diff)
Port many utilities from bot
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__))