rama_http_backend/server/
mod.rs

1//! Rama HTTP server module,
2//! which provides the [`HttpServer`] type to serve HTTP requests.
3
4/// Result type of [`HttpServer::serve`].
5pub type HttpServeResult = Result<(), rama_core::error::BoxError>;
6
7pub mod service;
8pub use service::HttpServer;
9
10mod hyper_conn;
11
12pub mod layer;