Add GUILD_SPLASH endpoint. Closes #76.
This commit is contained in:
parent
80cfd644b4
commit
5df7209ee4
1 changed files with 1 additions and 0 deletions
|
@ -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" }
|
||||
|
|
Loading…
Reference in a new issue