mirror of https://github.com/containers/podman.git
Merge pull request #9080 from siretart/patch-1
swagger.go: Fix compilation error
This commit is contained in:
commit
b4b78382cd
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue