Files
axum/axum-macros/tests/debug_handler/pass/ready.rs
T

10 lines
141 B
Rust

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