Skip to content

Commit

Permalink
feat: ✨ re-exported sycamore GenericNode
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Aug 24, 2021
1 parent 39bb5ff commit 8b79be8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/perseus/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ pub use http;
pub use http::Request as HttpRequest;
/// All HTTP requests use empty bodies for simplicity of passing them around. They'll never need payloads (value in path requested).
pub type Request = HttpRequest<()>;
pub use sycamore::{DomNode, SsrNode};
pub use sycamore::{DomNode, SsrNode, generic_node::GenericNode};

pub use crate::build::{build_template, build_templates};
pub use crate::config_manager::{ConfigManager, FsConfigManager};
pub use crate::decode_time_str::decode_time_str;
pub use crate::serve::{get_page, get_render_cfg};
pub use crate::shell::{app_shell, ErrorPages};
pub use crate::template::{Template, TemplateMap, States, StringResult, StringResultWithCause};
pub use crate::errors::{err_to_status_code, ErrorCause};
pub use crate::errors::{err_to_status_code, ErrorCause};

0 comments on commit 8b79be8

Please sign in to comment.