1 2 3 4 5 6 7 8 9 10 11 12 13
mod core; // So called because this contains what is essentially the core exposed logic of Perseus
mod default_headers;
mod page_props;
mod render_ctx;
mod states;
mod templates_map;
pub use self::core::*; // There are a lot of render function traits in here, there's no point in spelling them all out
pub use default_headers::default_headers;
pub use page_props::PageProps;
pub use render_ctx::RenderCtx;
pub use states::States;
pub use templates_map::{ArcTemplateMap, TemplateMap};