mirror of
https://github.com/containers/podman.git
synced 2025-12-03 19:59:39 +08:00
Golint claims that image.Image stutters but renaming the type would be a breaking change which isn't worth the consequences. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
9 lines
263 B
Go
9 lines
263 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 { //nolint
|
|
Untagged []string `json:"untagged"`
|
|
Deleted string `json:"deleted"`
|
|
}
|