mirror of
https://github.com/tokio-rs/axum.git
synced 2025-10-01 23:10:43 +00:00
8 lines
130 B
Rust
8 lines
130 B
Rust
#![feature(diagnostic_namespace)]
|
|
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler(_foo: bool) {}
|
|
|
|
fn main() {}
|