diff options
author | 2022-02-21 12:58:10 +0000 | |
---|---|---|
committer | 2022-02-21 12:58:10 +0000 | |
commit | bcdb3a77690e1e224225627f085d86689353e1cb (patch) | |
tree | bb21c2fa12e06b9c84142ddd4f1f4260f078b185 /botcore/__init__.py | |
parent | Modify Autodoc Formatting (diff) |
Port many utilities from bot
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r-- | botcore/__init__.py | 13 |
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__)) |