podman/cmd/podman/commands_remoteclient.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{}
}