From 525d65ea912d20d18d6d815a1707df0a3caeedb9 Mon Sep 17 00:00:00 2001 From: ToxicKidz Date: Fri, 25 Feb 2022 08:36:59 -0500 Subject: feat: Port the Site API wrapper from the bot repo Co-authored-by: Johannes Christ Co-authored-by: MarkKoz --- botcore/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'botcore/__init__.py') diff --git a/botcore/__init__.py b/botcore/__init__.py index a5835306..7d3803f3 100644 --- a/botcore/__init__.py +++ b/botcore/__init__.py @@ -1,10 +1,11 @@ """Useful utilities and tools for Discord bot development.""" -from botcore import exts, utils +from botcore import exts, site_api, utils __all__ = [ exts, utils, + site_api, ] __all__ = list(map(lambda module: module.__name__, __all__)) -- cgit v1.2.3