(filter *ari.Key)
| 33 | } |
| 34 | |
| 35 | func (e *endpoint) List(filter *ari.Key) ([]*ari.Key, error) { |
| 36 | return e.c.listRequest(&proxy.Request{ |
| 37 | Kind: "EndpointList", |
| 38 | Key: filter, |
| 39 | }) |
| 40 | } |
| 41 | |
| 42 | func (e *endpoint) ListByTech(tech string, filter *ari.Key) ([]*ari.Key, error) { |
| 43 | return e.c.listRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected