Files
neon/libs/utils/src/http/mod.rs
2022-09-14 08:14:05 +03:00

9 lines
321 B
Rust

pub mod endpoint;
pub mod error;
pub mod json;
pub mod request;
/// Current fast way to apply simple http routing in various Neon binaries.
/// Re-exported for sake of uniform approach, that could be later replaced with better alternatives, if needed.
pub use routerify::{ext::RequestExt, RouterBuilder, RouterService};