make arguments more clear

This commit is contained in:
xfnw 2024-04-25 19:17:15 -04:00
parent 07894ef715
commit 53094226a9
1 changed files with 2 additions and 2 deletions

View File

@ -24,14 +24,14 @@ struct Opt {
insecure: bool,
/// connect with a tls client certificate
#[arg(short = 'c', long)]
#[arg(short, long)]
cert: Option<PathBuf>,
#[arg(long, default_value = "/etc/ssl/cert.pem")]
cafile: PathBuf,
/// connect via socks5 proxy
#[arg(short = 's', long)]
#[arg(short, long, value_name = "ADDR")]
socks: Option<SocketAddr>,
#[arg(required = true)]