web/models/player-count.go
2025-07-14 19:24:36 +02:00

9 lines
266 B
Go

package models
type PlayerCount struct {
// The number of minutes elapsed since January 1, 1970 UTC.
Time int64 `json:"time"`
Playing int `json:"playing"`
NormalQueue int `json:"normal_queue"`
PriorityQueue int `json:"priority_queue"`
}