(filter *ari.Key)
| 33 | } |
| 34 | |
| 35 | func (m *modules) List(filter *ari.Key) ([]*ari.Key, error) { |
| 36 | return m.c.listRequest(&proxy.Request{ |
| 37 | Kind: "AsteriskModuleList", |
| 38 | Key: filter, |
| 39 | }) |
| 40 | } |
| 41 | |
| 42 | func (m *modules) Load(key *ari.Key) error { |
| 43 | return m.c.commandRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected