Skip to content

Commit

Permalink
restored default for prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
yerlaser committed Nov 5, 2023
1 parent 6ced8f6 commit 90b2623
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion converter_rayon/src/utils/argument_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub struct CliArgs {
#[arg(short, long)]
pub table: String,

#[arg(short, long, default_value_t = String::new())]
#[arg(short, long, default_value_t = String::from("lat-"))]
pub prefix: String,

#[arg(short, long, default_value_t = String::new())]
Expand Down
2 changes: 1 addition & 1 deletion converter_tokio/src/utils/argument_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub struct CliArgs {
#[arg(short, long)]
pub table: String,

#[arg(short, long, default_value_t = String::new())]
#[arg(short, long, default_value_t = String::from("lat-"))]
pub prefix: String,

#[arg(short, long, default_value_t = String::new())]
Expand Down

0 comments on commit 90b2623

Please sign in to comment.