//! # HTTP Types
//!
//! Core types for the HTTP layer including the Executor type.
use Arc;
use BoxFuture;
use crateContext;
/// Executor is the core type for handling requests and middleware.
pub type Executor = dyn for<'a> Fn + Send + Sync;
/// Route handler type alias
pub type RouteHandler = ;
/// Middleware chain type alias
pub type MiddlewareChain = ;
/// Helper function to convert a closure into an Executor.