From 51e56c0e2ae4d688d9bd327987baad6361d2a6ed Mon Sep 17 00:00:00 2001 From: Tyler Date: Sun, 13 Jan 2019 18:38:29 -0500 Subject: [PATCH] Reformat messages --- messages.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/messages.go b/messages.go index 94b0a83..2036b7a 100644 --- a/messages.go +++ b/messages.go @@ -6,17 +6,17 @@ type basicMessage struct { } type playMessage struct { - Op string `json:"op"` - GuildID string `json:"guildId,omitempty"` - Track string `json:"track,omitempty"` - StartTime string `json:"startTime,omitempty"` - EndTime string `json:"endTime,omitempty"` + Op string `json:"op"` + GuildID string `json:"guildId,omitempty"` + Track string `json:"track,omitempty"` + StartTime string `json:"startTime,omitempty"` + EndTime string `json:"endTime,omitempty"` } type pauseMessage struct { - Op string `json:"op"` - GuildID string `json:"guildId,omitempty"` - Pause bool `json:"pause,omitempty"` + Op string `json:"op"` + GuildID string `json:"guildId,omitempty"` + Pause bool `json:"pause,omitempty"` } type seekMessage struct { @@ -28,7 +28,7 @@ type seekMessage struct { type volumeMessage struct { Op string `json:"op"` GuildID string `json:"guildId,omitempty"` - Volume int `json:"volume,omitempty"` + Volume int `json:"volume,omitempty"` } type voiceUpdateMessage struct {