diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-01-20 13:35:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-20 13:35:18 +0100 |
commit | ef2f6f9f3ee3a54ffc3b9cd0740230b60dcc8d6a (patch) | |
tree | d2b6848b9fcdbc34911bdfcc085ade05db2742fa /cmd/podman/commands_remoteclient.go | |
parent | 74b85098cf7f6e2809f9075475f4fae44c0f011c (diff) | |
parent | 6f6cf86d8f1b916940ffc6eb79a763140bb86eca (diff) | |
download | podman-ef2f6f9f3ee3a54ffc3b9cd0740230b60dcc8d6a.tar.gz podman-ef2f6f9f3ee3a54ffc3b9cd0740230b60dcc8d6a.tar.bz2 podman-ef2f6f9f3ee3a54ffc3b9cd0740230b60dcc8d6a.zip |
Merge pull request #2184 from baude/remotemaskcommands
Mask unimplemeted commands for remote client
Diffstat (limited to 'cmd/podman/commands_remoteclient.go')
-rw-r--r-- | cmd/podman/commands_remoteclient.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go new file mode 100644 index 000000000..6701e14a1 --- /dev/null +++ b/cmd/podman/commands_remoteclient.go @@ -0,0 +1,21 @@ +// +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 getMainAppFlags() []cli.Flag { + return []cli.Flag{} +} |