blob: f6a26134bef9dc4cd2026adee3b21663925a3123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
}
|