mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
68696b09b1
Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
8 lines
141 B
Rust
8 lines
141 B
Rust
#![deny(unreachable_code)]
|
|
|
|
use axum::extract::Path;
|
|
|
|
#[axum_macros::debug_handler]
|
|
async fn handler(Path(_): Path<String>) {}
|
|
|
|
fn main() {}
|