clean config refactor

This commit is contained in:
Clément DOUIN
2022-09-22 16:38:38 +02:00
parent 82b7dfb97f
commit a3686c1c44
137 changed files with 2772 additions and 7546 deletions
+10
View File
@@ -0,0 +1,10 @@
use clap::Arg;
/// Defines the max table width argument.
pub fn max_width<'a>() -> Arg<'a, 'a> {
Arg::with_name("max-table-width")
.help("Defines a maximum width for the table")
.short("w")
.long("max-width")
.value_name("INT")
}