1
0
mirror of https://github.com/actix/actix-website synced 2025-06-27 15:39:02 +02:00

migrate to docusaurus (v2) (#266)

Co-authored-by: ibraheemdev <ibrah1440@gmail.com>
This commit is contained in:
Santiago
2022-07-16 11:59:20 +02:00
committed by GitHub
parent a85b4ff5a3
commit 8393aea71a
85 changed files with 23020 additions and 4357 deletions

View File

@ -14,6 +14,7 @@ async fn hello_world() -> impl Responder {
async fn current_temperature() -> impl Responder {
web::Json(Measurement { temperature: 42.3 })
}
// </flexible-responders>
#[actix_web::main]
async fn main() -> std::io::Result<()> {
@ -26,4 +27,3 @@ async fn main() -> std::io::Result<()> {
.run()
.await
}
// </flexible-responders>