From 38d030aaed778de69ee80bbd8f8de6dcba0a9129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20=28Netux=29=20Rodr=C3=ADguez?= Date: Fri, 17 Aug 2018 15:52:12 -0300 Subject: [PATCH] endpoints(): add EndpointEmojiAnimated (#572) --- endpoints.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/endpoints.go b/endpoints.go index 95f6fd9..b961908 100644 --- a/endpoints.go +++ b/endpoints.go @@ -136,7 +136,8 @@ var ( EndpointIntegrationsJoin = func(iID string) string { return EndpointAPI + "integrations/" + iID + "/join" } - EndpointEmoji = func(eID string) string { return EndpointAPI + "emojis/" + eID + ".png" } + 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"