httpClient makes HTTP calls to all non-GitHub API endpoints
| 60 | |
| 61 | // httpClient makes HTTP calls to all non-GitHub API endpoints |
| 62 | type httpClient interface { |
| 63 | Get(url string) (*http.Response, error) |
| 64 | } |
| 65 | |
| 66 | type Client interface { |
| 67 | GetByDigest(params FetchParams) ([]*Attestation, error) |
no outgoing calls
no test coverage detected