medullah_web/http/
mod.rs

1use ntex::web::ServiceConfig;
2
3pub mod extractors;
4pub mod kernel;
5pub mod middlewares;
6pub mod response;
7pub mod server;
8
9pub use ntex::http::Method;
10pub use ntex_cors::Cors;
11
12pub type HttpHandler = fn(cfg: &mut ServiceConfig);