use structopt::StructOpt;
#[derive(Debug, StructOpt)]
pub enum Action {
Parse {
#[structopt()]
file: String,
},
Credits,
Help,
}
#[derive(Debug, StructOpt)]
#[structopt(
name = "Regex Parser",
about = "A command line to-do app written in Rust"
)]
pub struct CommandLineArgs {
#[structopt(subcommand)]
pub action: Action,
}