diff options
Diffstat (limited to 'discord/opus.py')
| -rw-r--r-- | discord/opus.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/opus.py b/discord/opus.py index afc55175..88127f99 100644 --- a/discord/opus.py +++ b/discord/opus.py @@ -33,6 +33,12 @@ import sys from .errors import DiscordException +__all__ = ( + 'Encoder', + 'OpusError', + 'OpusNotLoaded', +) + log = logging.getLogger(__name__) c_int_ptr = ctypes.POINTER(ctypes.c_int) |