(ctx context.Context, owner string, repo string, sha string, recursive bool)
| 25 | //nolint:lll |
| 26 | type Git interface { |
| 27 | GetTree(ctx context.Context, owner string, repo string, sha string, recursive bool) (*github.Tree, *github.Response, error) |
| 28 | } |
| 29 | |
| 30 | type client struct { |