(key *ari.Key, channelID string)
| 233 | } |
| 234 | |
| 235 | func (b *bridge) VideoSource(key *ari.Key, channelID string) error { |
| 236 | return b.c.commandRequest(&proxy.Request{ |
| 237 | Kind: "BridgeVideoSource", |
| 238 | Key: key, |
| 239 | BridgeVideoSource: &proxy.BridgeVideoSource{ |
| 240 | Channel: channelID, |
| 241 | }, |
| 242 | }) |
| 243 | } |
| 244 | |
| 245 | func (b *bridge) VideoSourceDelete(key *ari.Key) error { |
| 246 | return b.c.commandRequest(&proxy.Request{ |
no test coverage detected