Files

10 lines
138 B
Rust
Raw Permalink Normal View History

use axum::Json;
use axum_macros::debug_handler;
struct Struct {}
#[debug_handler]
async fn handler(_foo: Json<Struct>) {}
fn main() {}