Files
podman/cmd/podman/cliconfig/create.go
baude 25a3923b61 Migrate to cobra CLI
We intend to migrate to the cobra cli from urfave/cli because the
project is more well maintained.  There are also some technical reasons
as well which extend into our remote client work.

Signed-off-by: baude <bbaude@redhat.com>
2019-02-08 10:26:43 -06:00

23 lines
351 B
Go

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
}