GetServiceEndpoints returns all endpoints for the given service.
(service string)
| 324 | |
| 325 | // GetServiceEndpoints returns all endpoints for the given service. |
| 326 | func (idx *OpenAPIIndex) GetServiceEndpoints(service string) []*EndpointInfo { |
| 327 | return idx.byService[service] |
| 328 | } |
| 329 | |
| 330 | // Search searches for endpoints matching the query. |
| 331 | func (idx *OpenAPIIndex) Search(query string) []*EndpointInfo { |
no outgoing calls
no test coverage detected