Macros for Viz Web Framework
Generators for handler
#[handler] fn about() -> impl IntoResponse { } #[handler] async fn index() -> impl IntoResponse { () } #[handler] async fn get_user() -> Result<impl IntoResponse> { Ok(()) }
extract-handler