Reformat messages
This commit is contained in:
parent
580ef99f87
commit
51e56c0e2a
18
messages.go
18
messages.go
|
@ -6,17 +6,17 @@ type basicMessage struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type playMessage struct {
|
type playMessage struct {
|
||||||
Op string `json:"op"`
|
Op string `json:"op"`
|
||||||
GuildID string `json:"guildId,omitempty"`
|
GuildID string `json:"guildId,omitempty"`
|
||||||
Track string `json:"track,omitempty"`
|
Track string `json:"track,omitempty"`
|
||||||
StartTime string `json:"startTime,omitempty"`
|
StartTime string `json:"startTime,omitempty"`
|
||||||
EndTime string `json:"endTime,omitempty"`
|
EndTime string `json:"endTime,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type pauseMessage struct {
|
type pauseMessage struct {
|
||||||
Op string `json:"op"`
|
Op string `json:"op"`
|
||||||
GuildID string `json:"guildId,omitempty"`
|
GuildID string `json:"guildId,omitempty"`
|
||||||
Pause bool `json:"pause,omitempty"`
|
Pause bool `json:"pause,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type seekMessage struct {
|
type seekMessage struct {
|
||||||
|
@ -28,7 +28,7 @@ type seekMessage struct {
|
||||||
type volumeMessage struct {
|
type volumeMessage struct {
|
||||||
Op string `json:"op"`
|
Op string `json:"op"`
|
||||||
GuildID string `json:"guildId,omitempty"`
|
GuildID string `json:"guildId,omitempty"`
|
||||||
Volume int `json:"volume,omitempty"`
|
Volume int `json:"volume,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type voiceUpdateMessage struct {
|
type voiceUpdateMessage struct {
|
||||||
|
|
Loading…
Reference in New Issue