1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! A `Router` assigns `Middleware` to paths and resolves them per request
pub use self::http_router::HttpRouter;
pub use self::router::{Router, Route, RouteResult};
pub use self::matcher::Matcher;
pub use self::into_matcher::FORMAT_PARAM;

pub mod http_router;
pub mod router;
mod matcher;
mod into_matcher;