init commit

This commit is contained in:
2025-04-09 15:52:24 +08:00
parent d1c5fb1162
commit a5b87653a3
31 changed files with 718 additions and 24 deletions
+15
View File
@@ -0,0 +1,15 @@
package model
type Image struct {
Id string `json:"Id"`
RepoTags []string `json:"RepoTags"`
Created int `json:"Created"`
Size int `json:"Size"`
SharedSize int `json:"SharedSize"`
VirtualSize int `json:"VirtualSize"`
Labels *struct {
Maintainer string `json:"maintainer,omitempty"`
} `json:"Labels"`
Digest string `json:"Digest"`
Names []string `json:"Names"`
}