aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/__init__.py
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2022-02-27 18:59:36 -0500
committerGravatar GitHub <[email protected]>2022-02-27 18:59:36 -0500
commit114db8556dd236fd5ba58061357e7ae1e5e732b2 (patch)
treedd8f7da305c2031080b1f76045ead33d7b110937 /botcore/__init__.py
parentMerge pull request #32 from python-discord/disnake-migration (diff)
parentfeat: Port the Site API wrapper from the bot repo (diff)
Merge pull request #34 from python-discord/feat/site-api-wrapperv2.1.0
Port the Site API wrapper from the bot repo
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r--botcore/__init__.py3
1 files changed, 2 insertions, 1 deletions
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__))