summaryrefslogtreecommitdiff
path: root/cmd/podman/commands_remoteclient.go
blob: 0adbd7b4cdfe63828b56ba131cf7821b50cd2f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// +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{}
}