summaryrefslogtreecommitdiff
path: root/cmd/podman/cliconfig/create.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/cliconfig/create.go')
-rw-r--r--cmd/podman/cliconfig/create.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/cmd/podman/cliconfig/create.go b/cmd/podman/cliconfig/create.go
new file mode 100644
index 000000000..68ba4d857
--- /dev/null
+++ b/cmd/podman/cliconfig/create.go
@@ -0,0 +1,22 @@
+package cliconfig
+
+import (
+ buildahcli "github.com/containers/buildah/pkg/cli"
+)
+
+type CreateValues struct {
+ PodmanCommand
+}
+
+type RunValues struct {
+ PodmanCommand
+}
+
+type BuildValues struct {
+ PodmanCommand
+ *buildahcli.BudResults
+ *buildahcli.UserNSResults
+ *buildahcli.FromAndBudResults
+ *buildahcli.NameSpaceResults
+ *buildahcli.LayerResults
+}