owncast/status.go

9 lines
248 B
Go
Raw Normal View History

package main
type Status struct {
2020-06-11 08:52:55 +02:00
Online bool `json:"online"`
ViewerCount int `json:"viewerCount"`
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
}