(key *ari.Key, channelID string)
| 95 | } |
| 96 | |
| 97 | func (b *bridge) RemoveChannel(key *ari.Key, channelID string) error { |
| 98 | return b.c.commandRequest(&proxy.Request{ |
| 99 | Kind: "BridgeRemoveChannel", |
| 100 | Key: key, |
| 101 | BridgeRemoveChannel: &proxy.BridgeRemoveChannel{ |
| 102 | Channel: channelID, |
| 103 | }, |
| 104 | }) |
| 105 | } |
| 106 | |
| 107 | func (b *bridge) Delete(key *ari.Key) error { |
| 108 | return b.c.commandRequest(&proxy.Request{ |