Nicholas Young
Results
1
issues of
Nicholas Young
When creating REST APIs with Tide, I expect code like the following will be fairly common: ```rust let mut router = App::new(); router.at("/resource").nest(|router| { router.at("/").get(async move |_| "Slash"); router.at("").get(async move...