mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4caf68f4f6
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
14 lines
490 B
Go
14 lines
490 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.UsageData
|
|
type VolumeUsageData = volume.UsageData
|