mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
14 lines
423 B
Go
14 lines
423 B
Go
package client
|
|
|
|
import "github.com/moby/moby/api/types/container"
|
|
|
|
// ContainerDiffOptions holds parameters to show differences in a container filesystem.
|
|
type ContainerDiffOptions struct {
|
|
// Currently no options, but this allows for future extensibility
|
|
}
|
|
|
|
// ContainerDiffResult is the result from showing differences in a container filesystem.
|
|
type ContainerDiffResult struct {
|
|
Changes []container.FilesystemChange
|
|
}
|