1 2 3 4 5 6 7 8 9 10 11 12 13
pub mod config; pub mod error; pub mod support; pub type ViewResult<T, E = error::Error> = Result<T, E>; pub struct View { inner: tera::Tera, config: config::View, } // re-export pub use ayun_core::*;