axum-route 0.1.1

Minimalistic route macro for axum
Documentation
1
2
3
4
5
6
7
8
# axum-route


```rust
#[route(get, "/")]

pub async fn index() -> String {
    "Hello World!".into_string()
}
```