Skip to content

Commit e320d08

Browse files
authored
fix VoiceRegion.ID type (#354)
1 parent 7bfde5b commit e320d08

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

discord/voice_region.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
package discord
22

3-
import "github.com/disgoorg/snowflake/v2"
4-
53
// VoiceRegion (https://discord.com/developers/docs/resources/voice#voice-region-object)
64
type VoiceRegion struct {
7-
ID snowflake.ID `json:"id"`
5+
ID string `json:"id"`
86
Name string `json:"name"`
97
Vip bool `json:"vip"`
108
Optimal bool `json:"optimal"`

0 commit comments

Comments
 (0)