summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/types.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-02-05 14:30:25 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-02-10 13:18:48 +0100
commit926c9f8fbbff6332be4ba97d96ba95a9f09b7f65 (patch)
treee0b53150d01e06d19f880854e63411e256d996e5 /pkg/api/handlers/types.go
parent76e2a0c5d3365205cb104280d41015d6ab25cd9a (diff)
downloadpodman-926c9f8fbbff6332be4ba97d96ba95a9f09b7f65.tar.gz
podman-926c9f8fbbff6332be4ba97d96ba95a9f09b7f65.tar.bz2
podman-926c9f8fbbff6332be4ba97d96ba95a9f09b7f65.zip
v2 api: /libpod/images/load
Implement the /libpod/images/load endpoint. Tested manually with curl: curl -X POST --data-binary "@image.tar" --header "Content-Type: application/x-tar" Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/api/handlers/types.go')
-rw-r--r--pkg/api/handlers/types.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/api/handlers/types.go b/pkg/api/handlers/types.go
index c19397e60..0a06e080f 100644
--- a/pkg/api/handlers/types.go
+++ b/pkg/api/handlers/types.go
@@ -34,8 +34,7 @@ type ContainerConfig struct {
}
type LibpodImagesLoadReport struct {
- ID string `json:"id"`
- RepoTags []string `json:"repoTags"`
+ ID string `json:"id"`
}
type LibpodImagesImportReport struct {