mirror of
https://github.com/tokio-rs/axum.git
synced 2025-01-06 02:35:42 +01:00
10 lines
184 B
Rust
10 lines
184 B
Rust
|
use axum_macros::debug_handler;
|
||
|
|
||
|
#[debug_handler(body = BoxBody, body = BoxBody)]
|
||
|
async fn handler() {}
|
||
|
|
||
|
#[debug_handler(state = (), state = ())]
|
||
|
async fn handler_2() {}
|
||
|
|
||
|
fn main() {}
|