Signed-off-by: Tomasz Kopczynski <tomek@kopczynski.net.pl> Upstream-commit: ac7a663c0b0ae147f42048dbc19e933635e22f75 Component: engine
11 lines
274 B
Go
11 lines
274 B
Go
package client
|
|
|
|
// Command returns a cli command handler if one exists
|
|
func (cli *DockerCli) Command(name string) func(...string) error {
|
|
return map[string]func(...string) error{
|
|
"exec": cli.CmdExec,
|
|
"inspect": cli.CmdInspect,
|
|
"update": cli.CmdUpdate,
|
|
}[name]
|
|
}
|