alpc/
config.rs

1use structopt::StructOpt;
2
3#[derive(StructOpt, Debug)]
4pub struct Config {
5    /// Convert lowercase characters to phonetics as well
6    #[structopt(short, long)]
7    pub lowercase: bool,
8
9    /// Add verbosity to the output (not machine readable)
10    #[structopt(short, long)]
11    pub verbose: bool,
12}