summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/generic/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/api/handlers/generic/config.go')
-rw-r--r--pkg/api/handlers/generic/config.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/api/handlers/generic/config.go b/pkg/api/handlers/generic/config.go
new file mode 100644
index 000000000..f715d25eb
--- /dev/null
+++ b/pkg/api/handlers/generic/config.go
@@ -0,0 +1,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"`
+}