Added the executor to the commands map

This commit is contained in:
Diptanu Choudhury
2016-02-07 22:07:50 -05:00
parent f7f7cc9b95
commit 10b7160a39

View File

@@ -57,6 +57,11 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory {
Meta: meta,
}, nil
},
"executor": func() (cli.Command, error) {
return &command.ExecutorPluginCommand{
Meta: meta,
}, nil
},
"fs": func() (cli.Command, error) {
return &command.FSCommand{
Meta: meta,