(tech string, filter *ari.Key)
| 40 | } |
| 41 | |
| 42 | func (e *endpoint) ListByTech(tech string, filter *ari.Key) ([]*ari.Key, error) { |
| 43 | return e.c.listRequest(&proxy.Request{ |
| 44 | Kind: "EndpointListByTech", |
| 45 | Key: filter, |
| 46 | EndpointListByTech: &proxy.EndpointListByTech{ |
| 47 | Tech: tech, |
| 48 | }, |
| 49 | }) |
| 50 | } |