mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
11 lines
249 B
Go
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
|
|
}
|