1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-21 13:30:54 +00:00

Fix go vet problems

This commit is contained in:
Kane York 2015-11-05 23:24:35 -08:00
parent 525b19eccb
commit 0dffc494e4
3 changed files with 8 additions and 8 deletions

View file

@ -203,10 +203,10 @@ func HandleSurvey(conn *websocket.Conn, client *ClientInfo, msg ClientMessage) (
}
type FollowEvent struct {
User string `json:u`
Channel string `json:c`
NowFollowing bool `json:f`
Timestamp time.Time `json:t`
User string `json:"u"`
Channel string `json:"c"`
NowFollowing bool `json:"f"`
Timestamp time.Time `json:"t"`
}
var FollowEvents []FollowEvent