use crate::types::*;
pub const OUTPUT_FILE_NAME_EXTENSION_AS_STR: &str = "html";
#[derive(Debug)]
pub struct Args {
pub(crate) input_list_pathable_string: Option<List<PathableString>>,
pub(crate) log_level: Option<::log::Level>,
pub(crate) output_list_pathable_string: Option<List<PathableString>>,
pub(crate) output_file_name_extension: Option<String>,
pub(crate) settings: Option<Map<String, String>>,
pub(crate) template_list_pathable_string: Option<List<PathableString>>,
pub(crate) helper_list_pathable_string: Option<List<PathableString>>,
pub(crate) test: bool,
}
impl ::std::default::Default for Args {
fn default() -> Self { Self {
input_list_pathable_string: None,
log_level: None,
output_list_pathable_string: None,
output_file_name_extension: None,
settings: None,
template_list_pathable_string: None,
helper_list_pathable_string: None,
test: false,
}}
}