lint: optional json structs must be ptrs
This commit is contained in:
parent
20f5db7e50
commit
59811adafe
32
model.go
32
model.go
|
@ -69,22 +69,22 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
type message struct {
|
type message struct {
|
||||||
Op string `json:"op"`
|
Op string `json:"op"`
|
||||||
GuildID string `json:"guildId,omitempty"`
|
GuildID string `json:"guildId,omitempty"`
|
||||||
SessionID string `json:"sessionId,omitempty"`
|
SessionID string `json:"sessionId,omitempty"`
|
||||||
Event VoiceServerUpdate `json:"event,omitempty"`
|
Event *VoiceServerUpdate `json:"event,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"`
|
||||||
Pause bool `json:"pause,omitempty"`
|
Pause bool `json:"pause,omitempty"`
|
||||||
Position int `json:"position,omitempty"`
|
Position int `json:"position,omitempty"`
|
||||||
Volume int `json:"volume,omitempty"`
|
Volume int `json:"volume,omitempty"`
|
||||||
State state `json:"state,omitempty"`
|
State *state `json:"state,omitempty"`
|
||||||
Type string `json:"type,omitempty"`
|
Type string `json:"type,omitempty"`
|
||||||
Reason string `json:"reason,omitempty"`
|
Reason string `json:"reason,omitempty"`
|
||||||
Error string `json:"error,omitempty"`
|
Error string `json:"error,omitempty"`
|
||||||
ThresholdMs int `json:"thresholdMs,omitempty"`
|
ThresholdMs int `json:"thresholdMs,omitempty"`
|
||||||
StatCPU statCPU `json:"cpu,omitempty"`
|
StatCPU *statCPU `json:"cpu,omitempty"`
|
||||||
// TODO: stats
|
// TODO: stats
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
node.go
2
node.go
|
@ -144,7 +144,7 @@ func (node *Node) CreatePlayer(guildID string, sessionID string, event VoiceServ
|
||||||
Op: opVoiceUpdate,
|
Op: opVoiceUpdate,
|
||||||
GuildID: guildID,
|
GuildID: guildID,
|
||||||
SessionID: sessionID,
|
SessionID: sessionID,
|
||||||
Event: event,
|
Event: &event,
|
||||||
}
|
}
|
||||||
data, err := json.Marshal(msg)
|
data, err := json.Marshal(msg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -134,7 +134,7 @@ func (player *Player) Forward(sessionID string, event VoiceServerUpdate) error {
|
||||||
Op: opVoiceUpdate,
|
Op: opVoiceUpdate,
|
||||||
GuildID: player.guildID,
|
GuildID: player.guildID,
|
||||||
SessionID: sessionID,
|
SessionID: sessionID,
|
||||||
Event: event,
|
Event: &event,
|
||||||
}
|
}
|
||||||
data, err := json.Marshal(msg)
|
data, err := json.Marshal(msg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue