xitca_web/handler/
mod.rs

1//! type based high level async function service.
2
3mod impls;
4mod types;
5
6// TODO: enable sync handler when major wasm targets(including wasi) support std threads
7#[cfg(not(target_family = "wasm"))]
8mod sync;
9
10pub use types::*;
11
12#[cfg(not(target_family = "wasm"))]
13pub use sync::handler_sync_service;
14
15pub use xitca_http::util::service::handler::{FromRequest, Responder, handler_service};