checkline 1.1.3

checkline: checkbox line picker for stdin line input
1
2
3
4
5
6
7
8
9
10
11
12
//! Args for the application.
//!
//! These args correspond to the matches in the file `clap.rs`.
//! We have these args in their own file in order to be flexible,
//! such as being able to start our app with other arg parsers.

use std::default::Default;

#[derive(Default, Debug)]
pub struct Args {
    pub(crate) verbose: u8,
}