mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-24 16:17:56 +01:00
8 lines
143 B
Rust
8 lines
143 B
Rust
|
use axum::extract::Path;
|
||
|
use axum_macros::debug_handler;
|
||
|
|
||
|
#[debug_handler]
|
||
|
async fn handler(_: Path<String>, _: Path<String>) {}
|
||
|
|
||
|
fn main() {}
|