Replace route with Router::new().route() (#215)

This way there is now only one way to create a router:

```rust
use axum::{Router, handler::get};

let app = Router::new()
    .route("/foo", get(handler))
    .route("/foo", get(handler));
```

`nest` was changed in the same way:

```rust
use axum::Router;

let app = Router::new().nest("/foo", service);
```
This commit is contained in:
David Pedersen
2021-08-19 22:37:48 +02:00
committed by GitHub
parent 97b53768ba
commit ca4d9a2bb9
49 changed files with 652 additions and 625 deletions
+4 -4
View File
@@ -6,9 +6,8 @@
use axum::{
handler::{get, post},
route,
routing::{BoxRoute, Router},
Json,
routing::BoxRoute,
Json, Router,
};
use tower_http::trace::TraceLayer;
@@ -34,7 +33,8 @@ async fn main() {
/// without having to create an HTTP server.
#[allow(dead_code)]
fn app() -> Router<BoxRoute> {
route("/", get(|| async { "Hello, World!" }))
Router::new()
.route("/", get(|| async { "Hello, World!" }))
.route(
"/json",
post(|payload: Json<serde_json::Value>| async move {