(owner, repo, branch, dest string)
| 26 | // root. The fetching package satisfies this via DownloadGitHubZip. |
| 27 | type RepoFetcher interface { |
| 28 | Fetch(owner, repo, branch, dest string) (root string, err error) |
| 29 | } |
| 30 | |
| 31 | // NewService constructs a metadata Service with the default GitHub fetcher. |
no outgoing calls
no test coverage detected