mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 11:39:08 +03:00
8 lines
268 B
Go
8 lines
268 B
Go
package models
|
|
|
|
// StreamHealthOverview represents an overview of the current stream health.
|
|
type StreamHealthOverview struct {
|
|
Healthy bool `json:"healthy"`
|
|
HealthyPercentage int `json:"healthPercentage"`
|
|
Message string `json:"message"`
|
|
}
|