use crate::style::StyleBundle;
use regex::Regex;
pub use structopt::StructOpt;
#[derive(StructOpt, Debug)]
#[structopt(name = "corrupt")]
pub struct Opt {
#[structopt(short, long, default_value = "[Fg(Red)]")]
pub style: Vec<StyleBundle>,
#[structopt(name = "REGEX", parse(try_from_str))]
pub regs: Vec<Regex>,
#[structopt(short, long, default_value = "512")]
pub flush_thd: usize,
}