mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-16 11:51:54 +01:00
9 lines
152 B
Rust
9 lines
152 B
Rust
use axum::response::IntoResponse;
|
|
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler() -> impl IntoResponse {
|
|
"hi!"
|
|
}
|
|
|
|
fn main() {}
|