diff options
author | 2022-03-23 20:04:44 +0000 | |
---|---|---|
committer | 2022-03-24 08:22:17 +0000 | |
commit | 1e6556a2b41afed11ee2b6c9b9256f6cb8769a66 (patch) | |
tree | e3f34db2215c21a2b17cd69434c88bca0f36edac /botcore/__init__.py | |
parent | Bump d.py version and add new requirements for utils (diff) |
Add async_stats subclass of statsd
This is used by the bots to push stats to statsd in a non-blocking way.
Co-authored-by: Joe Banks <[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 7d3803f3..59081e57 100644 --- a/botcore/__init__.py +++ b/botcore/__init__.py @@ -1,8 +1,9 @@ """Useful utilities and tools for Discord bot development.""" -from botcore import exts, site_api, utils +from botcore import async_stats, exts, site_api, utils __all__ = [ + async_stats, exts, utils, site_api, |