github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/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 }