1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
}