mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-19 13:10:41 +01: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() {}
|