mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-30 06:21:07 +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() {}
|