3个不稳定版本

0.2.0 2023年12月14日
0.1.0 2022年7月18日
0.1.0-alpha2022年7月16日

#100 in #async-http


用于 2 crate

MIT 许可证

9KB
97

Viz

Viz宏

描述
handler 扩展处理器带提取器

示例

use viz::{IntoResponse, Result, types::{Params}};
use viz_macros::handler;

#[handler]
fn about() -> impl IntoResponse {
}

#[handler]
async fn index() -> impl IntoResponse {
    ()
}

#[handler]
async fn get_user(Params(name): Params<String>) -> Result<impl IntoResponse> {
    Ok(name)
}

许可证

此项目受MIT许可证许可。

作者

依赖项

~280–730KB
~18K SLoC