#[get]
Mark a function as a GET handler.
#[get("/items")] async fn list_items() -> Json<Vec<Item>> { // ... }