mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-04 06:37:50 +00: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>
8 lines
263 B
Go
8 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"`
|
|
}
|