Removed "Sample" from VoiceRegions struct

This commit is contained in:
Bruce Marriner 2015-11-17 10:42:58 -06:00
parent c78ee4399d
commit 4316dfe9b9

View file

@ -27,10 +27,10 @@ type Embed struct { // TODO figure this out
// A VoiceRegion stores data for a specific voice region server. // A VoiceRegion stores data for a specific voice region server.
type VoiceRegion struct { type VoiceRegion struct {
ID string `json:"id"` ID string `json:"id"`
Name string `json:"name"` Name string `json:"name"`
SampleHostname string `json:"sample_hostname"` Hostname string `json:"sample_hostname"`
SamplePort int `json:"sample_port"` Port int `json:"sample_port"`
} }
// A VoiceICE stores data for voice ICE servers. // A VoiceICE stores data for voice ICE servers.