extern crate filesystem;
#[macro_use]
extern crate lazy_static;
extern crate pug;
extern crate wkhtmltopdf;
pub mod error;
pub mod resume;
pub mod template;
pub mod templates;
mod html_compiler;
mod pdf_compiler;
use filesystem::OsFileSystem;
pub use crate::html_compiler::HtmlCompiler;
pub use crate::pdf_compiler::PdfCompiler;
lazy_static! {
static ref FILE_SYSTEM: OsFileSystem = OsFileSystem::new();
}