| 15 | ) |
| 16 | |
| 17 | type apiPlatform struct { |
| 18 | client *http.Client |
| 19 | repo ghrepo.Interface |
| 20 | } |
| 21 | |
| 22 | func (p *apiPlatform) List(runID string) ([]shared.Artifact, error) { |
| 23 | return shared.ListArtifacts(p.client, p.repo, runID) |
nothing calls this directly
no outgoing calls
no test coverage detected