mirror of
https://github.com/datarhei/core.git
synced 2025-10-04 15:42:57 +08:00

Commits (Ingo Oppermann): - Add experimental SRT connection stats and logs - Hide /config/reload endpoint in reade-only mode - Add SRT server - Create v16 in go.mod - Fix data races, tests, lint, and update dependencies - Add trailing slash for routed directories (datarhei/restreamer#340) - Allow relative URLs in content in static routes Co-Authored-By: Ingo Oppermann <57445+ioppermann@users.noreply.github.com>
7 lines
167 B
Go
7 lines
167 B
Go
package api
|
|
|
|
// SRTChannel represents details about a currently connected SRT publisher
|
|
type SRTChannel struct {
|
|
Name string `json:"name" jsonschema:"minLength=1"`
|
|
}
|