14 lines
274 B
Go
14 lines
274 B
Go
package model
|
|
|
|
type VolumesJson struct {
|
|
Volumes []Volume `json:"volumes"`
|
|
}
|
|
type Volume struct {
|
|
Driver string `json:"driver"`
|
|
Labels struct {
|
|
} `json:"labels"`
|
|
Mountpoint string `json:"mountpoint"`
|
|
Name string `json:"name"`
|
|
Scope string `json:"scope"`
|
|
}
|