mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 21:59:43 +03:00
7 lines
110 B
Go
7 lines
110 B
Go
|
package main
|
||
|
|
||
|
type Status struct {
|
||
|
Online bool `json:"online"`
|
||
|
ViewerCount int `json:"viewerCount"`
|
||
|
}
|