diff options
| author | Rapptz <[email protected]> | 2016-06-10 22:28:15 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-06-10 22:28:15 -0400 |
| commit | a175c86aa1587c43303e8a06e2078c05a7892938 (patch) | |
| tree | 4dea3eaf0cd5775ba365def9a6721d3845cce88f /discord/endpoints.py | |
| parent | Handle voice websocket closure if it's a successful close. (diff) | |
| download | discord.py-a175c86aa1587c43303e8a06e2078c05a7892938.tar.xz discord.py-a175c86aa1587c43303e8a06e2078c05a7892938.zip | |
Add Client.application_info to retrieve the current app info.
Fixes #241.
Diffstat (limited to 'discord/endpoints.py')
| -rw-r--r-- | discord/endpoints.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/endpoints.py b/discord/endpoints.py index 0ef0efa9..50c14704 100644 --- a/discord/endpoints.py +++ b/discord/endpoints.py @@ -34,3 +34,4 @@ LOGIN = API_BASE + '/auth/login' LOGOUT = API_BASE + '/auth/logout' SERVERS = API_BASE + '/guilds' CHANNELS = API_BASE + '/channels' +APPLICATIONS = API_BASE + '/oauth2/applications' |