diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-03-29 09:49:38 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-03-29 09:49:45 -0400 |
commit | 127400880a1a3d53d4d4eb454cc9f35ddc89e79a (patch) | |
tree | 4ff587426447207a165b4e01d8cea1a8aaa7293e /pkg/bindings/images/images.go | |
parent | ac3499cc9605dd2c7bfccedd6f9a95c7bc0dd9ad (diff) | |
download | podman-127400880a1a3d53d4d4eb454cc9f35ddc89e79a.tar.gz podman-127400880a1a3d53d4d4eb454cc9f35ddc89e79a.tar.bz2 podman-127400880a1a3d53d4d4eb454cc9f35ddc89e79a.zip |
[NO TESTS NEEDED] Shrink the size of podman-remote
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/bindings/images/images.go')
-rw-r--r-- | pkg/bindings/images/images.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/bindings/images/images.go b/pkg/bindings/images/images.go index 1be2bdfdd..8680d6baa 100644 --- a/pkg/bindings/images/images.go +++ b/pkg/bindings/images/images.go @@ -8,7 +8,7 @@ import ( "net/url" "strconv" - "github.com/containers/podman/v3/pkg/api/handlers" + "github.com/containers/podman/v3/pkg/api/handlers/types" "github.com/containers/podman/v3/pkg/auth" "github.com/containers/podman/v3/pkg/bindings" "github.com/containers/podman/v3/pkg/domain/entities" @@ -96,12 +96,12 @@ func Tree(ctx context.Context, nameOrID string, options *TreeOptions) (*entities } // History returns the parent layers of an image. -func History(ctx context.Context, nameOrID string, options *HistoryOptions) ([]*handlers.HistoryResponse, error) { +func History(ctx context.Context, nameOrID string, options *HistoryOptions) ([]*types.HistoryResponse, error) { if options == nil { options = new(HistoryOptions) } _ = options - var history []*handlers.HistoryResponse + var history []*types.HistoryResponse conn, err := bindings.GetClient(ctx) if err != nil { return nil, err |