use std::path::PathBuf;
#[derive(Clone, Debug)]
pub struct Config {
pub root: PathBuf,
pub report: ReportOptions,
}
impl Config {
pub fn new(root: impl Into<PathBuf>) -> Self {
Config {
root: root.into(),
report: ReportOptions::default(),
}
}
}
#[derive(Clone, Debug, Default)]
pub struct ReportOptions {
pub check: bool,
}