21 lines
302 B
Go
21 lines
302 B
Go
package db
|
|
|
|
type CoreUpdate struct {
|
|
ID uint
|
|
|
|
HasUpdate bool
|
|
CanUpdate bool
|
|
CouldReachWebsite bool
|
|
SlowResponse bool
|
|
Version string
|
|
Channel string
|
|
WillDisableModules bool
|
|
}
|
|
|
|
type SystemUpdate struct {
|
|
ID uint
|
|
|
|
HasUpdate bool
|
|
Version string
|
|
}
|