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

9 lines
152 B
Rust

use axum::response::IntoResponse;
use axum_macros::debug_handler;
#[debug_handler]
async fn handler() -> impl IntoResponse {
"hi!"
}
fn main() {}