use mimeograph_router::*; type Result = std::result::Result>; #[get("/hello/**/world")] pub fn testing(request: &http::Request<()>) -> Result> { http::Response::builder() .body(String::from("hello world")) .map_err(Into::into) } fn main() {}