mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-30 06:21:07 +00:00
8 lines
128 B
Rust
8 lines
128 B
Rust
use axum_macros::debug_handler;
|
|
use axum::body::Bytes;
|
|
|
|
#[debug_handler]
|
|
async fn handler(_: String, _: Bytes) {}
|
|
|
|
fn main() {}
|