mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-25 17:57:54 +00:00
in the case of the remote-client, it was decided to hide the latest flag to avoid confusion for end-users on what the "last" container, volume, or pod are. Signed-off-by: baude <bbaude@redhat.com>
54 lines
1.2 KiB
Go
54 lines
1.2 KiB
Go
// +build remoteclient
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
const remoteclient = true
|
|
|
|
// commands that only the remoteclient implements
|
|
func getMainCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getAppCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getImageSubCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getContainerSubCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getPodSubCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getGenerateSubCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getPlaySubCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getTrustSubCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|
|
|
|
// commands that only the remoteclient implements
|
|
func getSystemSubCommands() []*cobra.Command {
|
|
return []*cobra.Command{}
|
|
}
|