mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-01 12:41:51 +01:00
11 lines
115 B
Rust
11 lines
115 B
Rust
|
use axum_debug::debug_handler;
|
||
|
|
||
|
struct A;
|
||
|
|
||
|
impl A {
|
||
|
#[debug_handler]
|
||
|
async fn handler() {}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|