diff options
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r-- | botcore/__init__.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/botcore/__init__.py b/botcore/__init__.py index c582d0df..d910f393 100644 --- a/botcore/__init__.py +++ b/botcore/__init__.py @@ -1,9 +1,10 @@ -from botcore import ( - regex, -) +"""Useful utilities and tools for discord bot development.""" + +from botcore import exts, utils __all__ = [ - regex, + exts, + utils, ] __all__ = list(map(lambda module: module.__name__, __all__)) |