diff options
author | Miloslav Trmač <mitr@redhat.com> | 2022-08-24 22:34:23 +0200 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2022-08-29 17:55:37 +0200 |
commit | 5f03e2f804645da572ec8f7b02a15003558815c5 (patch) | |
tree | 8ec8fce7d50f4689976372cada7868725dfd5b50 /pkg/trust | |
parent | 4e998c917c6c0a0873d2eed23fe38106e37bd482 (diff) | |
download | podman-5f03e2f804645da572ec8f7b02a15003558815c5.tar.gz podman-5f03e2f804645da572ec8f7b02a15003558815c5.tar.bz2 podman-5f03e2f804645da572ec8f7b02a15003558815c5.zip |
Remove an unused trust.ShowOutput type
Should not change behavior.
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'pkg/trust')
-rw-r--r-- | pkg/trust/trust.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pkg/trust/trust.go b/pkg/trust/trust.go index 663a1b5e2..28dac1ab6 100644 --- a/pkg/trust/trust.go +++ b/pkg/trust/trust.go @@ -53,14 +53,6 @@ type RegistryNamespace struct { SigStoreStaging string `json:"sigstore-staging"` // For writing only. } -// ShowOutput keep the fields for image trust show command -type ShowOutput struct { - Repo string - Trusttype string - GPGid string - Sigstore string -} - // systemRegistriesDirPath is the path to registries.d. const systemRegistriesDirPath = "/etc/containers/registries.d" |