Skip to main content

get

Attribute Macro get 

Source
#[get]
Expand description

Mark a function as a GET handler.

§Example

#[get("/items")]
async fn list_items() -> Json<Vec<Item>> {
    // ...
}