1pub mod config;
2pub mod files;
3pub mod util;
6
7pub const ROOT_FOLDER: &'static str = "root_folder";
8pub const ROOT_FILE: &'static str = "root_file";
9pub const CONTENT_FOLDER_PATH: &'static str = "content_folder_path";
10pub const CONTENT_FOLDER: &'static str = "content_folder";
11pub const OUT_PATH: &'static str = "out_path";
12pub const TEMPLATES: &'static str = "templates";
13pub const CONTENT: &'static str = "content";
14pub const STATIC: &'static str = "static";
15pub const TEMPLATES_DEF_PASS: &'static str = "templates_def_pass";
16pub const CONTENT_DEF_PASS: &'static str = "content_def_pass";
17pub const STATIC_DEF_PASS: &'static str = "static_def_pass";
18pub const DEFAULT_PASS: &'static str = "default_pass";