forked from DGNum/colmena
Add exec command
This commit is contained in:
parent
1c9e7cdb83
commit
78a6825be6
5 changed files with 199 additions and 16 deletions
|
@ -69,6 +69,7 @@ For a sample configuration, see <https://github.com/zhaofengli/colmena>.
|
|||
bind_command!(build, app);
|
||||
bind_command!(introspect, app);
|
||||
bind_command!(upload_keys, app);
|
||||
bind_command!(exec, app);
|
||||
|
||||
let matches = app.clone().get_matches();
|
||||
|
||||
|
@ -77,6 +78,7 @@ For a sample configuration, see <https://github.com/zhaofengli/colmena>.
|
|||
command!(build, matches);
|
||||
command!(introspect, matches);
|
||||
command!("upload-keys", upload_keys, matches);
|
||||
command!(exec, matches);
|
||||
|
||||
app.print_long_help().unwrap();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue