Merge pull request #9080 from siretart/patch-1

swagger.go: Fix compilation error
This commit is contained in:
OpenShift Merge Robot 2021-01-25 11:51:09 +01:00 committed by GitHub
commit b4b78382cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
package swagger package swagger
import ( import (
"github.com/containers/podman/v2/libpod"
"github.com/containers/podman/v2/libpod/define" "github.com/containers/podman/v2/libpod/define"
"github.com/containers/podman/v2/libpod/image" "github.com/containers/podman/v2/libpod/image"
"github.com/containers/podman/v2/pkg/api/handlers" "github.com/containers/podman/v2/pkg/api/handlers"
@ -166,7 +165,7 @@ type swagInspectPodResponse struct {
type swagInspectVolumeResponse struct { type swagInspectVolumeResponse struct {
// in:body // in:body
Body struct { Body struct {
libpod.InspectVolumeData define.InspectVolumeData
} }
} }