mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 09:08:05 +01:00
9 lines
141 B
Rust
9 lines
141 B
Rust
|
#![deny(unreachable_code)]
|
||
|
|
||
|
use axum::extract::Path;
|
||
|
|
||
|
#[axum_macros::debug_handler]
|
||
|
async fn handler(Path(_): Path<String>) {}
|
||
|
|
||
|
fn main() {}
|