7 lines
170 B
Go
7 lines
170 B
Go
package api
|
|
|
|
// RTMPChannel represents details about a currently connected RTMP publisher
|
|
type RTMPChannel struct {
|
|
Name string `json:"name" jsonschema:"minLength=1"`
|
|
}
|