resufancy 0.1.1

Supercharge your resume with the power of your favourite web development tools
Documentation
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();
}