Files
moby/client/image_remove_opts.go
2025-08-26 15:38:44 -05:00

11 lines
249 B
Go

package client
import ocispec "github.com/opencontainers/image-spec/specs-go/v1"
// ImageRemoveOptions holds parameters to remove images.
type ImageRemoveOptions struct {
Platforms []ocispec.Platform
Force bool
PruneChildren bool
}