mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-15 19:25:54 +01:00
9 lines
141 B
Rust
9 lines
141 B
Rust
use axum_macros::debug_handler;
|
|
use std::future::{ready, Ready};
|
|
|
|
#[debug_handler]
|
|
fn handler() -> Ready<()> {
|
|
ready(())
|
|
}
|
|
|
|
fn main() {}
|