mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
7d88bd3a66
* Check for multiple body extractors in `debug_handler` * changelog link
7 lines
128 B
Rust
7 lines
128 B
Rust
use axum_macros::debug_handler;
|
|
use axum::body::Bytes;
|
|
|
|
#[debug_handler]
|
|
async fn handler(_: String, _: Bytes) {}
|
|
|
|
fn main() {}
|