soph_view/
lib.rs

1pub mod config;
2pub mod error;
3pub mod support;
4
5pub type ViewResult<T, E = error::Error> = Result<T, E>;
6
7#[derive(Default)]
8pub struct View {
9    engine: tera::Tera,
10}
11
12// re-export
13pub use soph_core::*;