This commit is contained in:
2025-03-25 18:28:06 +08:00
parent 80e147ef1e
commit d1c5fb1162
10 changed files with 334 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
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"`
}