diff options
author | 2022-02-22 23:47:09 +0000 | |
---|---|---|
committer | 2022-02-24 17:32:47 +0000 | |
commit | 060bad105dc2569fc485adb03b985aa2ab5d367e (patch) | |
tree | 05b218472ee306d1d2faeb121a21c1e2d6de9fe7 /botcore/__init__.py | |
parent | Add markdown powered changelog (diff) |
Move new utilities to the util namespace
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__)) |