From 4316dfe9b90ea017d46517bcbfac91c00f0ad858 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Tue, 17 Nov 2015 10:42:58 -0600 Subject: [PATCH] Removed "Sample" from VoiceRegions struct --- structs.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/structs.go b/structs.go index efa4cb6..fee4c5f 100644 --- a/structs.go +++ b/structs.go @@ -27,10 +27,10 @@ type Embed struct { // TODO figure this out // A VoiceRegion stores data for a specific voice region server. type VoiceRegion struct { - ID string `json:"id"` - Name string `json:"name"` - SampleHostname string `json:"sample_hostname"` - SamplePort int `json:"sample_port"` + ID string `json:"id"` + Name string `json:"name"` + Hostname string `json:"sample_hostname"` + Port int `json:"sample_port"` } // A VoiceICE stores data for voice ICE servers.