use std::path::PathBuf;
use structopt::StructOpt;
#[derive(Clone, Debug, Default, PartialEq, Eq, StructOpt)]
pub struct Config {
#[structopt(default_value = ".")]
pub path: PathBuf,
#[structopt(long)]
pub no_recursive: bool,
#[structopt(long)]
pub all: bool,
#[structopt(long, short)]
pub out: Option<PathBuf>,
#[structopt(long, short, default_value = "")]
pub suffix: String,
#[structopt(long, short)]
pub format: bool,
}