flores/lib/model/volume.go
2025-04-09 15:52:24 +08:00

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