| 43 | ) |
| 44 | |
| 45 | type Client struct { |
| 46 | azdoClient git.Client |
| 47 | ctx context.Context |
| 48 | repourl *Repo |
| 49 | repo *git.GitRepository |
| 50 | audit *auditHandler |
| 51 | branches *branchesHandler |
| 52 | builds *buildsHandler |
| 53 | commits *commitsHandler |
| 54 | contributors *contributorsHandler |
| 55 | languages *languagesHandler |
| 56 | policy *policyHandler |
| 57 | releases *releasesHandler |
| 58 | search *searchHandler |
| 59 | searchCommits *searchCommitsHandler |
| 60 | servicehooks *servicehooksHandler |
| 61 | workItems *workItemsHandler |
| 62 | zip *zipHandler |
| 63 | commitDepth int |
| 64 | } |
| 65 | |
| 66 | func (c *Client) InitRepo(inputRepo clients.Repo, commitSHA string, commitDepth int) error { |
| 67 | azdoRepo, ok := inputRepo.(*Repo) |
nothing calls this directly
no outgoing calls
no test coverage detected