diff options
| author | Rapptz <[email protected]> | 2021-04-25 04:57:29 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-05-27 00:53:13 -0400 |
| commit | 98570793e4af8dcfca25621e86fecd85297b0d59 (patch) | |
| tree | efcbe97935fa61126c642f00fdd3ebbc15b61375 /discord/__init__.py | |
| parent | Fix bug in Embed.__len__ caused by footer without text (diff) | |
| download | discord.py-98570793e4af8dcfca25621e86fecd85297b0d59.tar.xz discord.py-98570793e4af8dcfca25621e86fecd85297b0d59.zip | |
Add initial support for buttons and components
Diffstat (limited to 'discord/__init__.py')
| -rw-r--r-- | discord/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/discord/__init__.py b/discord/__init__.py index dbbb54c9..3b057e36 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -43,7 +43,7 @@ from .template import * from .widget import * from .object import * from .reaction import * -from . import utils, opus, abc +from . import utils, opus, abc, ui from .enums import * from .embeds import * from .mentions import * @@ -56,6 +56,7 @@ from .raw_models import * from .team import * from .sticker import * from .interactions import * +from .components import * VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial') |