This interface lets Scorecard look up package manager metadata for a project.
| 26 | |
| 27 | // This interface lets Scorecard look up package manager metadata for a project. |
| 28 | type ProjectPackageClient interface { |
| 29 | GetProjectPackageVersions(ctx context.Context, host, project string) (*ProjectPackageVersions, error) |
| 30 | } |
| 31 | |
| 32 | type depsDevClient struct { |
| 33 | client *http.Client |
no outgoing calls
no test coverage detected