mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-24 06:28:13 +01:00
21 lines
384 B
Go
21 lines
384 B
Go
package model
|
|
|
|
// App holds application details
|
|
type App struct {
|
|
ID string
|
|
Name string
|
|
Desc string
|
|
URL string
|
|
Author string
|
|
Version string
|
|
}
|
|
|
|
const (
|
|
ImageStatusNew = ImageStatus("new")
|
|
ImageStatusUpdate = ImageStatus("update")
|
|
ImageStatusUnchange = ImageStatus("unchange")
|
|
)
|
|
|
|
// ImageStatus holds Docker image status analysis
|
|
type ImageStatus string
|