diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-24 14:24:37 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-24 16:07:39 +0200 |
commit | 2400d1d52ff4199778781446445eef39a6e2c6b9 (patch) | |
tree | 86cee6c498b8ce5c8866eae2121058e07fb4ee19 /pkg/domain/entities | |
parent | b3e2324f5823de32b054d51c801aad995a4e0fdb (diff) | |
download | podman-2400d1d52ff4199778781446445eef39a6e2c6b9.tar.gz podman-2400d1d52ff4199778781446445eef39a6e2c6b9.tar.bz2 podman-2400d1d52ff4199778781446445eef39a6e2c6b9.zip |
go format previosly touched files
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/images.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 28ffcfbdf..2bb4ceb5b 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -66,9 +66,9 @@ type ImageSummary struct { Dangling bool `json:",omitempty"` // Podman extensions - Names []string `json:",omitempty"` - Digest string `json:",omitempty"` - History []string `json:",omitempty"` + Names []string `json:",omitempty"` + Digest string `json:",omitempty"` + History []string `json:",omitempty"` } func (i *ImageSummary) Id() string { // nolint |