Fix arg name collision

This commit is contained in:
Maxim Svistunov 2024-01-28 20:19:50 +01:00
parent 25bb21c29c
commit 01d24269df

View file

@ -17,7 +17,7 @@ struct Cli {
port: u16,
/// Host name or IP address of the server.
#[arg(short, long, default_value = "127.0.0.1", help = "Host name or IP address of the server")]
#[arg(long, default_value = "127.0.0.1", help = "Host name or IP address of the server")]
host: String,
}