mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-17 13:17:55 +08:00
10 lines
209 B
Rust
10 lines
209 B
Rust
use clap::Arg;
|
|
|
|
pub fn account_arg<'a>() -> Arg<'a, 'a> {
|
|
Arg::with_name("account")
|
|
.long("account")
|
|
.short("a")
|
|
.help("Selects a specific account")
|
|
.value_name("STRING")
|
|
}
|