(req *http.Request)
| 27 | |
| 28 | type requester interface { |
| 29 | Do(req *http.Request) (*http.Response, error) |
| 30 | } |
| 31 | |
| 32 | func (ch *CredHub) request(client requester, method string, pathStr string, query url.Values, body interface{}, checkServerErr bool) (*http.Response, error) { |
no outgoing calls
no test coverage detected