podman/pkg/api/handlers/generic/config.go

10 lines
263 B
Go

package generic
// ContainerCreateResponse is the response struct for creating a container
type ContainerCreateResponse struct {
// ID of the container created
Id string `json:"Id"`
// Warnings during container creation
Warnings []string `json:"Warnings"`
}