alpc 1.0.1

Aviation Language Phonetic Converter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use structopt::StructOpt;

#[derive(StructOpt, Debug)]
pub struct Config {
    /// Convert lowercase characters to phonetics as well
    #[structopt(short, long)]
    pub lowercase: bool,

    /// Add verbosity to the output (not machine readable)
    #[structopt(short, long)]
    pub verbose: bool,
}