From 5df7209ee40b4b54754d29aa47e71c5833a20b67 Mon Sep 17 00:00:00 2001 From: Chris Rhodes Date: Mon, 11 Jan 2016 12:40:59 -0800 Subject: [PATCH] Add GUILD_SPLASH endpoint. Closes #76. --- endpoints.go | 1 + 1 file changed, 1 insertion(+) diff --git a/endpoints.go b/endpoints.go index 0103f7d..da0b284 100644 --- a/endpoints.go +++ b/endpoints.go @@ -66,6 +66,7 @@ var ( GUILD_EMBED = func(gID string) string { return GUILDS + gID + "/embed" } GUILD_PRUNE = func(gID string) string { return GUILDS + gID + "/prune" } GUILD_ICON = func(gID, hash string) string { return GUILDS + gID + "/icons/" + hash + ".jpg" } + GUILD_SPLASH = func(gID, hash string) string { return GUILDS + gID + "/splashes/" + hash + ".jpg" } CHANNEL = func(cID string) string { return CHANNELS + cID } CHANNEL_PERMISSIONS = func(cID string) string { return CHANNELS + cID + "/permissions" }