github.com/toplink-cn/moby@v0.0.0-20240305205811-460b4aebdf81/api/types/image/image.go (about) 1 package image 2 3 import "time" 4 5 // Metadata contains engine-local data about the image. 6 type Metadata struct { 7 // LastTagTime is the date and time at which the image was last tagged. 8 LastTagTime time.Time `json:",omitempty"` 9 }