From 060bad105dc2569fc485adb03b985aa2ab5d367e Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Tue, 22 Feb 2022 23:47:09 +0000 Subject: Move new utilities to the util namespace --- botcore/__init__.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'botcore/__init__.py') 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__)) -- cgit v1.2.3