axum/axum-macros/tests/debug_handler/pass/ready.rs
2024-11-26 18:04:01 +00:00

9 lines
141 B
Rust

use axum_macros::debug_handler;
use std::future::{ready, Ready};
#[debug_handler]
fn handler() -> Ready<()> {
ready(())
}
fn main() {}