mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
8 lines
248 B
Go
8 lines
248 B
Go
package main
|
|
|
|
type Status struct {
|
|
Online bool `json:"online"`
|
|
ViewerCount int `json:"viewerCount"`
|
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
|
}
|