forked from pothtonswer/discordmuffin
endpoints(): add EndpointEmojiAnimated (#572)
This commit is contained in:
parent
1593c55523
commit
38d030aaed
1 changed files with 2 additions and 1 deletions
|
@ -137,6 +137,7 @@ var (
|
|||
EndpointIntegrationsJoin = func(iID string) string { return EndpointAPI + "integrations/" + iID + "/join" }
|
||||
|
||||
EndpointEmoji = func(eID string) string { return EndpointAPI + "emojis/" + eID + ".png" }
|
||||
EndpointEmojiAnimated = func(eID string) string { return EndpointAPI + "emojis/" + eID + ".gif" }
|
||||
|
||||
EndpointOauth2 = EndpointAPI + "oauth2/"
|
||||
EndpointApplications = EndpointOauth2 + "applications"
|
||||
|
|
Loading…
Reference in a new issue