Initial implementation of custom Renderable trait.

This commit is contained in:
Tom Alexander
2020-04-11 19:11:14 -04:00
parent af5122ab9f
commit e26b158ab4
4 changed files with 17 additions and 4 deletions

View File

@@ -1,8 +1,10 @@
//! This module contains a renderer for a rust implementation of LinkedIn Dust
mod errors;
mod renderable;
mod renderer;
pub use renderable::Renderable;
pub use renderer::compile_template;
pub use renderer::CompiledTemplate;
pub use renderer::DustRenderer;