(fields []string)
| 35 | } |
| 36 | |
| 37 | func (r *Release) ExportData(fields []string) map[string]interface{} { |
| 38 | return cmdutil.StructExportData(r, fields) |
| 39 | } |
| 40 | |
| 41 | func fetchReleases(httpClient *http.Client, repo ghrepo.Interface, limit int, excludeDrafts bool, excludePreReleases bool, order string, releaseFeatures fd.ReleaseFeatures) ([]Release, error) { |
| 42 | // TODO: immutableReleaseFullSupport |
nothing calls this directly
no test coverage detected