(repo Repo, commitSHA string, commitDepth int)
| 31 | // RepoClient interface is used by Scorecard checks to access a repo. |
| 32 | type RepoClient interface { |
| 33 | InitRepo(repo Repo, commitSHA string, commitDepth int) error |
| 34 | URI() string |
| 35 | IsArchived() (bool, error) |
| 36 | ListFiles(predicate func(string) (bool, error)) ([]string, error) |
no outgoing calls