From 4cb734f80917029f621083f4016613f08c575d70 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Mon, 9 Nov 2015 15:31:45 -0600 Subject: [PATCH] Fixed AU_ consts --- restapi.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/restapi.go b/restapi.go index aee1771..94b7abd 100644 --- a/restapi.go +++ b/restapi.go @@ -46,11 +46,11 @@ const ( INTEGRATIONS = API + "/integrations" // Authenticated User Info AU = USERS + "/@me" - AU_DEVICES = ME + "/devices" - AU_SETTINGS = ME + "/settings" - AU_CONNECTIONS = ME + "/connections" - AU_CHANNELS = ME + "/channels" - AU_SERVERS = ME + "/guilds" + AU_DEVICES = AU + "/devices" + AU_SETTINGS = AU + "/settings" + AU_CONNECTIONS = AU + "/connections" + AU_CHANNELS = AU + "/channels" + AU_SERVERS = AU + "/guilds" // Need a way to handle these here so the variables can be inserted. // Maybe defined as functions?