Merge branch 'cli-arg-nameclash-fix' into 'main'

Fix arg name collision

See merge request x433485/minisql!16
This commit is contained in:
Jindřich Moravec 2024-01-28 20:22:15 +01:00
commit d26d7898f4

View file

@ -17,7 +17,7 @@ struct Cli {
port: u16, port: u16,
/// Host name or IP address of the server. /// 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, host: String,
} }