24 lines
496 B
Rust
24 lines
496 B
Rust
|
use clap::{Arg, ArgMatches, App, SubCommand};
|
||
|
|
||
|
pub fn build_datetime_cli_component<'a, 'b>() -> Arg<'a, 'b> {
|
||
|
Arg::with_name(datetime_arg_name())
|
||
|
.short(datetime_arg_short())
|
||
|
.long(datetime_arg_long())
|
||
|
.takes_value(true)
|
||
|
.multiple(false)
|
||
|
.help("Specify a DateTime")
|
||
|
}
|
||
|
|
||
|
pub fn datetime_arg_name() -> &'static str {
|
||
|
"datetime"
|
||
|
}
|
||
|
|
||
|
pub fn datetime_arg_long() -> &'static str {
|
||
|
"datetime"
|
||
|
}
|
||
|
|
||
|
pub fn datetime_arg_short() -> &'static str {
|
||
|
"T"
|
||
|
}
|
||
|
|