tower_web/view/
mod.rs

1//! Render content using templates
2//!
3//! Currently, Handlebars is the only supported template engine. In time, the
4//! API will be opened up to third party crates.
5
6mod handlebars;
7
8pub use self::handlebars::Handlebars;