63 lines
1.4 KiB
Go
63 lines
1.4 KiB
Go
// +build remoteclient
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// 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 getVolumeSubCommands() []*cobra.Command {
|
|
return []*cobra.Command{
|
|
_volumeCreateCommand,
|
|
_volumeRmCommand,
|
|
_volumeLsCommand,
|
|
_volumeInspectCommand,
|
|
}
|
|
}
|
|
|
|
// 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{}
|
|
}
|