diff options
| author | Rapptz <[email protected]> | 2021-03-28 11:07:51 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-04-06 01:11:36 -0400 |
| commit | 8cece19b2220bd6b7f61438219a0b88d0768a079 (patch) | |
| tree | d82c331964790add2a4f11f7fc0342074a2f4521 /discord/__init__.py | |
| parent | Add support for setting application_id (diff) | |
| download | discord.py-8cece19b2220bd6b7f61438219a0b88d0768a079.tar.xz discord.py-8cece19b2220bd6b7f61438219a0b88d0768a079.zip | |
Add on_interaction event and Interaction class.
This is the first pass at the functionality. It's currently a bit
incomplete.
Diffstat (limited to 'discord/__init__.py')
| -rw-r--r-- | discord/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/__init__.py b/discord/__init__.py index 023d40ef..6ed1ec6a 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -55,6 +55,7 @@ from .audit_logs import AuditLogChanges, AuditLogEntry, AuditLogDiff from .raw_models import * from .team import * from .sticker import Sticker +from .interactions import * VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial') |