mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-25 00:00:23 +02:00
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:
@@ -13,7 +13,7 @@ use tower::{util::Either, BoxError};
|
||||
///
|
||||
/// ```rust
|
||||
/// use axum::{
|
||||
/// route,
|
||||
/// Router,
|
||||
/// response::{IntoResponse, Headers},
|
||||
/// handler::get,
|
||||
/// };
|
||||
@@ -36,7 +36,8 @@ use tower::{util::Either, BoxError};
|
||||
///
|
||||
/// // Or `[(&str, &str)]` if you're on Rust 1.53+
|
||||
///
|
||||
/// let app = route("/just-headers", get(just_headers))
|
||||
/// let app = Router::new()
|
||||
/// .route("/just-headers", get(just_headers))
|
||||
/// .route("/from-strings", get(from_strings));
|
||||
/// # async {
|
||||
/// # axum::Server::bind(&"".parse().unwrap()).serve(app.into_make_service()).await.unwrap();
|
||||
|
||||
Reference in New Issue
Block a user