Added: Ssh CLI command and API, config lease impl, sshConnect path to backend, http handler for Ssh connect

This commit is contained in:
Vishal Nayak
2015-06-17 12:39:49 -04:00
parent 647f3a59d9
commit fb866f9059
8 changed files with 219 additions and 0 deletions

View File

@@ -73,6 +73,12 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory {
}, nil
},
"ssh": func() (cli.Command, error) {
return &command.SshCommand{
Meta: meta,
}, nil
},
"help": func() (cli.Command, error) {
return &command.HelpCommand{
Meta: meta,