diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-24 13:52:39 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-24 16:07:39 +0200 |
commit | 90a6f39d0f107059571ad9e640476dc1f3901f8c (patch) | |
tree | 9240f80fa38995f96a396476095abad7b1dd9f68 /pkg | |
parent | 5268314e5376c3da7a1123ee1954b466baf2d911 (diff) | |
download | podman-90a6f39d0f107059571ad9e640476dc1f3901f8c.tar.gz podman-90a6f39d0f107059571ad9e640476dc1f3901f8c.tar.bz2 podman-90a6f39d0f107059571ad9e640476dc1f3901f8c.zip |
pkg/inspect: remove unused ImageResult type
[NO NEW TESTS NEEDED]
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/inspect/inspect.go | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/pkg/inspect/inspect.go b/pkg/inspect/inspect.go index 767d86daf..15943858f 100644 --- a/pkg/inspect/inspect.go +++ b/pkg/inspect/inspect.go @@ -41,18 +41,3 @@ type RootFS struct { Type string `json:"Type"` 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 -} |