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