blob: bb84175a3cb689850d1a472c3181f1e22f5a8f95 (
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 { //nolint
Untagged []string `json:"untagged"`
Deleted string `json:"deleted"`
}
|