mirror of
https://github.com/tokio-rs/axum.git
synced 2025-10-02 07:20:38 +00:00

* Move axum-debug into axum-macros * fix ref to axum-macros in changelog * Apply suggestions from code review Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com> Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
7 lines
128 B
Rust
7 lines
128 B
Rust
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler(_one: String, _two: String, _three: String) {}
|
|
|
|
fn main() {}
|