mirror of https://github.com/containers/podman.git
26 lines
409 B
Go
26 lines
409 B
Go
// +build remoteclient
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
func getAppCommands() []cli.Command {
|
|
return []cli.Command{}
|
|
}
|
|
|
|
func getImageSubCommands() []cli.Command {
|
|
return []cli.Command{}
|
|
}
|
|
|
|
func getContainerSubCommands() []cli.Command {
|
|
return []cli.Command{}
|
|
}
|
|
|
|
func getSystemSubCommands() []cli.Command {
|
|
return []cli.Command{}
|
|
}
|
|
|
|
func getMainAppFlags() []cli.Flag {
|
|
return []cli.Flag{}
|
|
}
|