13 lines
291 B
Rust
13 lines
291 B
Rust
|
use argh::FromArgs;
|
||
|
|
||
|
#[derive(FromArgs)]
|
||
|
/// Print desktop notifications
|
||
|
pub struct Cli {
|
||
|
/// select output format: j(json), r(rson), p(plain)
|
||
|
#[argh(option, short = 'f')]
|
||
|
pub format: Option<String>,
|
||
|
|
||
|
/// verbose mode
|
||
|
#[argh(switch, short = 'v')]
|
||
|
pub verbose: bool,
|
||
|
}
|