Add exec command

This commit is contained in:
Zhaofeng Li 2021-02-09 22:07:10 -08:00
parent 1c9e7cdb83
commit 78a6825be6
5 changed files with 199 additions and 16 deletions

View file

@ -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();
}