mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
7d88bd3a66
* Check for multiple body extractors in `debug_handler` * changelog link
7 lines
156 B
Rust
7 lines
156 B
Rust
use axum_macros::debug_handler;
|
|
use axum::http::{Method, Uri};
|
|
|
|
#[debug_handler]
|
|
async fn handler(_one: Method, _two: Uri, _three: String) {}
|
|
|
|
fn main() {}
|