mirror of https://github.com/containers/podman.git
15 lines
380 B
Go
15 lines
380 B
Go
package image
|
|
|
|
const (
|
|
// LatestTag describes the tag used to refer to the latest version
|
|
// of an image
|
|
LatestTag = "latest"
|
|
)
|
|
|
|
// ImageDeleteResponse is the response for removing an image from storage and containers
|
|
// what was untagged vs actually removed
|
|
type ImageDeleteResponse struct { //nolint
|
|
Untagged []string `json:"untagged"`
|
|
Deleted string `json:"deleted"`
|
|
}
|