Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp> Upstream-commit: 9d9dff3d0d9e92adf7c2e59f94c63766659d1d47 Component: engine
9 lines
220 B
Go
9 lines
220 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{
|
|
"inspect": cli.CmdInspect,
|
|
}[name]
|
|
}
|