summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/types.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2021-05-17 09:30:38 -0700
committerJhon Honce <jhonce@redhat.com>2021-05-21 09:50:58 -0700
commit8bf852d5f0e5d3b22da2a7401d37d1ef3475065f (patch)
tree48bf4d1c69a9cdfa12f603c74166b77d54bf30dd /pkg/api/handlers/types.go
parent6a6ef402c3c8e14a621a98a4029255e3be41d5ef (diff)
downloadpodman-8bf852d5f0e5d3b22da2a7401d37d1ef3475065f.tar.gz
podman-8bf852d5f0e5d3b22da2a7401d37d1ef3475065f.tar.bz2
podman-8bf852d5f0e5d3b22da2a7401d37d1ef3475065f.zip
Match swagger to "as built" output
* Remove all Types no longer referenced, they were never used A future API breaking version of Podman API, may restore these Types and push formatting into presentation layer vs. server. Fixes #9578 Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/api/handlers/types.go')
-rw-r--r--pkg/api/handlers/types.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkg/api/handlers/types.go b/pkg/api/handlers/types.go
index 2ffd9b0cb..f94c9a1f5 100644
--- a/pkg/api/handlers/types.go
+++ b/pkg/api/handlers/types.go
@@ -148,15 +148,6 @@ type HistoryResponse struct {
Comment string
}
-type ImageLayer struct{}
-
-type ImageTreeResponse struct {
- ID string `json:"id"`
- Tags []string `json:"tags"`
- Size string `json:"size"`
- Layers []ImageLayer `json:"layers"`
-}
-
type ExecCreateConfig struct {
docker.ExecConfig
}