mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
11 lines
306 B
Go
11 lines
306 B
Go
package client
|
|
|
|
import "github.com/moby/moby/api/types/system"
|
|
|
|
// DiskUsageOptions holds parameters for system disk usage query.
|
|
type DiskUsageOptions struct {
|
|
// Types specifies what object types to include in the response. If empty,
|
|
// all object types are returned.
|
|
Types []system.DiskUsageObject
|
|
}
|