blob: f715d25eb70bcd374845a385f01e8057501aaaa8 (
plain)
1
2
3
4
5
6
7
8
9
|
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"`
}
|