Fixed AU_ consts

This commit is contained in:
Bruce Marriner 2015-11-09 15:31:45 -06:00
parent 7738fea746
commit 4cb734f809

View file

@ -46,11 +46,11 @@ const (
INTEGRATIONS = API + "/integrations" INTEGRATIONS = API + "/integrations"
// Authenticated User Info // Authenticated User Info
AU = USERS + "/@me" AU = USERS + "/@me"
AU_DEVICES = ME + "/devices" AU_DEVICES = AU + "/devices"
AU_SETTINGS = ME + "/settings" AU_SETTINGS = AU + "/settings"
AU_CONNECTIONS = ME + "/connections" AU_CONNECTIONS = AU + "/connections"
AU_CHANNELS = ME + "/channels" AU_CHANNELS = AU + "/channels"
AU_SERVERS = ME + "/guilds" AU_SERVERS = AU + "/guilds"
// Need a way to handle these here so the variables can be inserted. // Need a way to handle these here so the variables can be inserted.
// Maybe defined as functions? // Maybe defined as functions?