summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Rothberg <vrothberg@redhat.com>2022-05-24 13:52:39 +0200
committerValentin Rothberg <vrothberg@redhat.com>2022-05-24 16:07:39 +0200
commit90a6f39d0f107059571ad9e640476dc1f3901f8c (patch)
tree9240f80fa38995f96a396476095abad7b1dd9f68
parent5268314e5376c3da7a1123ee1954b466baf2d911 (diff)
downloadpodman-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>
-rw-r--r--pkg/inspect/inspect.go15
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
-}