flores/lib/model/images.go
2025-04-09 15:52:24 +08:00

16 lines
428 B
Go

package model
type Image struct {
Id string `json:"Id"`
RepoTags []string `json:"RepoTags"`
Created int `json:"Created"`
Size int `json:"Size"`
SharedSize int `json:"SharedSize"`
VirtualSize int `json:"VirtualSize"`
Labels *struct {
Maintainer string `json:"maintainer,omitempty"`
} `json:"Labels"`
Digest string `json:"Digest"`
Names []string `json:"Names"`
}