podman/libpod/image/config.go

9 lines
254 B
Go

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"`
}