use super::*;
use lombok_macros::{CustomDebug, Data, New};
#[derive(Clone, PartialEq, Eq, Data, New, CustomDebug)]
pub struct Args {
#[get(pub)]
#[set(pub)]
src_dir: PathBuf,
#[get(pub)]
#[set(pub)]
out_dir: PathBuf,
#[get(pub)]
#[set(pub)]
name: &'static str,
#[get(pub)]
#[set(pub)]
release: bool,
#[get(pub)]
#[set(pub)]
index_html: Option<PathBuf>,
}