15 lines
254 B
Go
15 lines
254 B
Go
package db
|
|
|
|
type Release struct {
|
|
ID uint
|
|
|
|
Generation int
|
|
Channel string
|
|
Suffix string
|
|
Build int
|
|
NodeVersion int
|
|
MaxGeneration int
|
|
MaxStableGeneration int
|
|
Time int64
|
|
}
|