mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-16 19:59:03 +01:00
10 lines
137 B
Rust
10 lines
137 B
Rust
|
use axum::Json;
|
||
|
use axum_macros::debug_handler;
|
||
|
|
||
|
struct Struct {}
|
||
|
|
||
|
#[debug_handler]
|
||
|
async fn handler(foo: Json<Struct>) {}
|
||
|
|
||
|
fn main() {}
|