diff options
author | 2022-02-25 08:36:59 -0500 | |
---|---|---|
committer | 2022-02-25 18:55:44 -0500 | |
commit | 525d65ea912d20d18d6d815a1707df0a3caeedb9 (patch) | |
tree | dd8f7da305c2031080b1f76045ead33d7b110937 /botcore/__init__.py | |
parent | Merge pull request #32 from python-discord/disnake-migration (diff) |
feat: Port the Site API wrapper from the bot repo
Co-authored-by: Johannes Christ <[email protected]>
Co-authored-by: MarkKoz <[email protected]>
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r-- | botcore/__init__.py | 3 |
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__)) |