(input api.RepoMetadataInput)
| 143 | } |
| 144 | |
| 145 | func (mf *MetadataFetcher) RepoMetadataFetch(input api.RepoMetadataInput) (*api.RepoMetadataResult, error) { |
| 146 | mf.IO.StartProgressIndicator() |
| 147 | metadataResult, err := api.RepoMetadata(mf.APIClient, mf.Repo, input) |
| 148 | mf.IO.StopProgressIndicator() |
| 149 | mf.State.MetadataResult = metadataResult |
| 150 | return metadataResult, err |
| 151 | } |
| 152 | |
| 153 | type RepoMetadataFetcher interface { |
| 154 | RepoMetadataFetch(api.RepoMetadataInput) (*api.RepoMetadataResult, error) |
nothing calls this directly
no test coverage detected