summaryrefslogtreecommitdiff
path: root/libpod/image/config.go
blob: 40e7fd496bda92635f7581d36856d5c75deb4370 (plain)
1
2
3
4
5
6
7
8
package image

// ImageDeleteResponse is the response for removing an image from storage and containers
// what was untagged vs actually removed
type ImageDeleteResponse struct {
	Untagged []string `json:"untagged"`
	Deleted  string   `json:"deleted"`
}