pkg/inspect: remove unused ImageResult type

[NO NEW TESTS NEEDED]

Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2022-05-24 13:52:39 +02:00
parent 5268314e53
commit 90a6f39d0f

View File

@ -41,18 +41,3 @@ type RootFS struct {
Type string `json:"Type"` Type string `json:"Type"`
Layers []digest.Digest `json:"Layers"` Layers []digest.Digest `json:"Layers"`
} }
// ImageResult is used for podman images for collection and output.
type ImageResult struct {
Tag string
Repository string
RepoDigests []string
RepoTags []string
ID string
Digest digest.Digest
ConfigDigest digest.Digest
Created time.Time
Size *uint64
Labels map[string]string
Dangling bool
}