diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-02 12:46:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 12:46:25 +0100 |
commit | 24e5cbd9a5f95073509e4f83929aba166bc9ddc8 (patch) | |
tree | 455d7ac7ea8a84faa6b22b66dd29ed9792835d34 /pkg/domain/entities | |
parent | 3147ff829b3d43c4bb3a32e09e2e3fae13ccd6f4 (diff) | |
parent | 48d0d2b4a379b380b0f890a0fbb850a83f0d5fda (diff) | |
download | podman-24e5cbd9a5f95073509e4f83929aba166bc9ddc8.tar.gz podman-24e5cbd9a5f95073509e4f83929aba166bc9ddc8.tar.bz2 podman-24e5cbd9a5f95073509e4f83929aba166bc9ddc8.zip |
Merge pull request #12160 from matejvasek/fix-swagger-api
Fix swagger definitions
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/images.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index ac5e6f410..38cdc8f2f 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -50,6 +50,7 @@ func (i *Image) Id() string { // nolint return i.ID } +// swagger:model LibpodImageSummary type ImageSummary struct { ID string `json:"Id"` ParentId string // nolint |