mirror of https://github.com/containers/podman.git
18 lines
326 B
Go
18 lines
326 B
Go
package libpod
|
|
|
|
import "github.com/containers/image/v5/manifest"
|
|
|
|
// List Containers
|
|
// swagger:response ListContainers
|
|
type swagInspectPodResponse struct {
|
|
// in:body
|
|
Body []ListContainer
|
|
}
|
|
|
|
// Inspect Manifest
|
|
// swagger:response InspectManifest
|
|
type swagInspectManifestResponse struct {
|
|
// in:body
|
|
Body manifest.List
|
|
}
|