github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/libpod/image/config.go (about)

     1  package image
     2  
     3  const (
     4  	// LatestTag describes the tag used to refer to the latest version
     5  	// of an image
     6  	LatestTag = "latest"
     7  )
     8  
     9  // ImageDeleteResponse is the response for removing an image from storage and containers
    10  // what was untagged vs actually removed
    11  type ImageDeleteResponse struct { //nolint
    12  	Untagged []string `json:"untagged"`
    13  	Deleted  string   `json:"deleted"`
    14  }