uting::get, Router}; use tower::limit::ConcurrencyLimitLayer; async fn handler() {} let app = Router::new().route( "/", // All requests to `GET /` will be sent through `ConcurrencyLimitLayer` get(handler).layer(ConcurrencyLimitLayer::new(64)), ); # let _: Router = app; ```