(i, j int)
| 97 | |
| 98 | func (m metaSort) Len() int { return len(m) } |
| 99 | func (m metaSort) Less(i, j int) bool { return m[i].Created.Before(m[j].Created) } |
| 100 | func (m metaSort) Swap(i, j int) { m[i], m[j] = m[j], m[i] } |
| 101 | |
| 102 | func packageVersions(user, repo, typ, distro, version, pkgname, arch string) ([]string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected