mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
8 lines
265 B
Go
8 lines
265 B
Go
|
package models
|
||
|
|
||
|
// CurrentBroadcast represents the configuration associated with the currently active stream.
|
||
|
type CurrentBroadcast struct {
|
||
|
OutputSettings []StreamOutputVariant `json:"outputSettings"`
|
||
|
LatencyLevel LatencyLevel `json:"latencyLevel"`
|
||
|
}
|