mirror of
https://github.com/containers/podman.git
synced 2025-06-25 03:52:15 +08:00
go format previosly touched files
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
@ -66,9 +66,9 @@ type ImageSummary struct {
|
|||||||
Dangling bool `json:",omitempty"`
|
Dangling bool `json:",omitempty"`
|
||||||
|
|
||||||
// Podman extensions
|
// Podman extensions
|
||||||
Names []string `json:",omitempty"`
|
Names []string `json:",omitempty"`
|
||||||
Digest string `json:",omitempty"`
|
Digest string `json:",omitempty"`
|
||||||
History []string `json:",omitempty"`
|
History []string `json:",omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *ImageSummary) Id() string { // nolint
|
func (i *ImageSummary) Id() string { // nolint
|
||||||
|
@ -36,7 +36,7 @@ func (ir *ImageEngine) List(ctx context.Context, opts entities.ImageListOptions)
|
|||||||
}
|
}
|
||||||
|
|
||||||
e := entities.ImageSummary{
|
e := entities.ImageSummary{
|
||||||
ID: img.ID(),
|
ID: img.ID(),
|
||||||
Created: img.Created().Unix(),
|
Created: img.Created().Unix(),
|
||||||
Dangling: isDangling,
|
Dangling: isDangling,
|
||||||
Digest: string(img.Digest()),
|
Digest: string(img.Digest()),
|
||||||
|
Reference in New Issue
Block a user