1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-02-19 11:39:53 +01:00
axum/examples/sessions
David Pedersen ca4d9a2bb9
Replace route with Router::new().route() ()
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);
```
2021-08-19 22:37:48 +02:00
..
src Replace route with Router::new().route() () 2021-08-19 22:37:48 +02:00
Cargo.toml Move all examples to their own crates () 2021-08-18 00:49:01 +02:00