diff options
author | 2022-04-02 20:11:34 +0100 | |
---|---|---|
committer | 2022-04-02 20:11:34 +0100 | |
commit | 765284a5e436f7786619a5ba4c312d75df5e9dee (patch) | |
tree | f4748800698892fc9940c217b5507011ec614d27 /botcore/__init__.py | |
parent | Merge pull request #39 from python-discord/revert-disnake (diff) | |
parent | Use imperative mood in docstrings (diff) |
Merge pull request #42 from python-discord/bump-d.py-and-add-BotBase
Bump d.py and add bot base
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r-- | botcore/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/botcore/__init__.py b/botcore/__init__.py index 7d3803f3..f0c4e6bb 100644 --- a/botcore/__init__.py +++ b/botcore/__init__.py @@ -1,11 +1,15 @@ """Useful utilities and tools for Discord bot development.""" -from botcore import exts, site_api, utils +from botcore import async_stats, exts, site_api, utils +from botcore._bot import BotBase, StartupError __all__ = [ + async_stats, + BotBase, exts, utils, site_api, + StartupError, ] __all__ = list(map(lambda module: module.__name__, __all__)) |