mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
14 lines
502 B
Go
14 lines
502 B
Go
package types // import "github.com/docker/docker/api/types"
|
|
|
|
import "github.com/docker/docker/api/types/volume"
|
|
|
|
// Volume volume
|
|
//
|
|
// Deprecated: use github.com/docker/docker/api/types/volume.Volume
|
|
type Volume = volume.Volume
|
|
|
|
// VolumeUsageData Usage details about the volume. This information is used by the
|
|
// `GET /system/df` endpoint, and omitted in other endpoints.
|
|
//
|
|
// Deprecated: use github.com/docker/docker/api/types/volume.VolumeUsageData
|
|
type VolumeUsageData = volume.VolumeUsageData
|