medullah_web/http/
mod.rs

1
2
3
4
5
6
7
8
9
use ntex::web::ServiceConfig;

pub mod extractors;
pub mod kernel;
pub mod middlewares;
pub mod response;
pub mod server;

pub type HttpHandler = fn(cfg: &mut ServiceConfig);