19 lines
407 B
Go
19 lines
407 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type VolumesJson struct {
|
|
Volumes []struct {
|
|
CreatedAt time.Time `json:"CreatedAt"`
|
|
Driver string `json:"Driver"`
|
|
Labels struct {
|
|
} `json:"Labels"`
|
|
Mountpoint string `json:"Mountpoint"`
|
|
Name string `json:"Name"`
|
|
Options struct {
|
|
} `json:"Options"`
|
|
Scope string `json:"Scope"`
|
|
} `json:"Volumes"`
|
|
Warnings []interface{} `json:"Warnings"`
|
|
}
|