//! 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.
usestd::default::Default;#[derive(Default, Debug)]pubstructArgs{pub(crate)verbose:u8,
}