mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
05529c8efc
* Check `Request` and `Path` in `debug_handler` * changelog links * Include errors with the input
7 lines
143 B
Rust
7 lines
143 B
Rust
use axum::extract::Path;
|
|
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler(_: Path<String>, _: Path<String>) {}
|
|
|
|
fn main() {}
|