Combine the render traits into a single context_element file.

This commit is contained in:
Tom Alexander
2020-04-28 19:09:02 -04:00
parent 41ad6179d1
commit c961cf7ab8
5 changed files with 13 additions and 16 deletions

View File

@@ -1,15 +1,14 @@
//! This module contains a renderer for a rust implementation of LinkedIn Dust
mod context_element;
mod errors;
mod renderable;
mod renderer;
mod walkable;
pub use context_element::ContextElement;
pub use context_element::Renderable;
pub use context_element::Walkable;
pub use errors::CompileError;
pub use errors::RenderError;
pub use renderable::Renderable;
pub use renderer::compile_template;
pub use renderer::CompiledTemplate;
pub use renderer::DustRenderer;
pub use walkable::ContextElement;
pub use walkable::Walkable;