mirror of
https://github.com/containers/podman.git
synced 2025-06-24 11:28:24 +08:00

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>
23 lines
351 B
Go
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
|
|
}
|