Corrected optional entry.

This commit is contained in:
Jeff Baskin 2024-03-29 08:00:18 -04:00
parent ca26efca6e
commit 555cf209ba
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ struct Args {
address: String,
/// cluster host
#[arg(short, long, num_args(0..))]
cluster: String,
cluster: Option<String>,
}
#[cfg(test)]