10 lines
238 B
Go
10 lines
238 B
Go
package host
|
|
|
|
type IframeOutput struct {
|
|
ServerId string `json:"server_id"`
|
|
ServerAddr string `json:"server_addr"`
|
|
StreamName string `json:"stream_name,omitempty"`
|
|
Data []byte `json:"data"`
|
|
Codes int `json:"codes"`
|
|
}
|