mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 03:54:54 +08:00
9 lines
248 B
Go
9 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"`
|
|
}
|