main: adding "id" parameter back onto "run" command

This commit is contained in:
Dave Hrycyszyn
2019-12-17 14:47:45 +00:00
parent 7b545c78ee
commit a42dd55320
+6
View File
@@ -31,6 +31,12 @@ fn main() {
.subcommand(
SubCommand::with_name("run")
.about("Run a persistent Nym client process")
.arg(Arg::with_name("id")
.long("id")
.help("Id of the nym-mixnet-client we want to run.")
.takes_value(true)
.required(true)
)
.arg(Arg::with_name("local")
.long("local")
.help("Flag to indicate whether the client is expected to run on the local deployment.")