| 10 | ) |
| 11 | |
| 12 | type Artifact struct { |
| 13 | Name string `json:"name"` |
| 14 | Size uint64 `json:"size_in_bytes"` |
| 15 | DownloadURL string `json:"archive_download_url"` |
| 16 | Expired bool `json:"expired"` |
| 17 | } |
| 18 | |
| 19 | type artifactsPayload struct { |
| 20 | Artifacts []Artifact |
nothing calls this directly
no outgoing calls
no test coverage detected