summaryrefslogtreecommitdiff
path: root/libpod/image/config.go
blob: efd83d343114989847812d52c5881a79e85269ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"`
}