diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-04-20 10:02:35 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2020-04-20 10:10:24 -0700 |
commit | 9cd6bba5d57e7e23a92ab27e6c37f8623662d9b3 (patch) | |
tree | 4ab14b11f1bb0cf26287a5f4cc2acf94dda34a1d /pkg/bindings | |
parent | e5e625b2a6481dd49d1d6303df1157c8a51dd7c2 (diff) | |
download | podman-9cd6bba5d57e7e23a92ab27e6c37f8623662d9b3.tar.gz podman-9cd6bba5d57e7e23a92ab27e6c37f8623662d9b3.tar.bz2 podman-9cd6bba5d57e7e23a92ab27e6c37f8623662d9b3.zip |
V2 podman image tree
* Basic port of V1 podman image tree ID
TODO: Refactor to return tree from service and format in presentation
layer
TODO: Support tunneling mode
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/bindings')
-rw-r--r-- | pkg/bindings/images/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bindings/images/images.go b/pkg/bindings/images/images.go index 3550c3968..e0f523ebd 100644 --- a/pkg/bindings/images/images.go +++ b/pkg/bindings/images/images.go @@ -74,7 +74,7 @@ func GetImage(ctx context.Context, nameOrID string, size *bool) (*entities.Image return &inspectedData, response.Process(&inspectedData) } -func ImageTree(ctx context.Context, nameOrId string) error { +func Tree(ctx context.Context, nameOrId string) error { return bindings.ErrNotImplemented } |