mirror of
https://github.com/tokio-rs/axum.git
synced 2025-10-02 23:34:47 +00:00
10 lines
141 B
Rust
10 lines
141 B
Rust
use axum_macros::debug_handler;
|
|
use std::future::{ready, Ready};
|
|
|
|
#[debug_handler]
|
|
fn handler() -> Ready<()> {
|
|
ready(())
|
|
}
|
|
|
|
fn main() {}
|