aboutsummaryrefslogtreecommitdiff
blob: e65fcb44383b9660deb95d27df99584b3c21450a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Contains the model of a package

package models

type OutdatedSource string

const (
	OutdatedSourceRepology OutdatedSource = "repology"
	OutdatedSourceAnitya   OutdatedSource = "anitya"
)

type OutdatedPackages struct {
	Atom          string `pg:",pk"`
	GentooVersion string
	NewestVersion string
	Source        OutdatedSource
}