mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
9 lines
143 B
Rust
9 lines
143 B
Rust
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler() {
|
|
let _rc = std::rc::Rc::new(());
|
|
async {}.await;
|
|
}
|
|
|
|
fn main() {}
|