potato
高性能、简洁语法的HTTP框架。
用法
加入库的引用:
Hello World
use *;
// http://127.0.0.1:8080/hello
async
async
更多示例请参考:https://github.com/fawdlstty/potato/tree/main/examples
高性能、简洁语法的HTTP框架。
加入库的引用:
cargo add potato
cargo add tokio --features full
use potato::*;
// http://127.0.0.1:8080/hello
#[http_get("/hello")]
async fn hello() -> HttpResponse {
HttpResponse::html("hello world")
}
#[tokio::main]
async fn main() {
let mut server = HttpServer::new("0.0.0.0:8080");
_ = server.serve_http().await;
}
更多示例请参考:https://github.com/fawdlstty/potato/tree/main/examples