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"` }