image.go 227 B

123456789
  1. package image
  2. import "time"
  3. // Metadata contains engine-local data about the image.
  4. type Metadata struct {
  5. // LastTagTime is the date and time at which the image was last tagged.
  6. LastTagTime time.Time `json:",omitempty"`
  7. }