mirror of
https://github.com/actix/actix-website
synced 2024-11-30 19:14:36 +01:00
24 lines
478 B
Rust
24 lines
478 B
Rust
#![allow(dead_code)]
|
|
|
|
// <norm>
|
|
use actix_web::{middleware, HttpResponse};
|
|
|
|
async fn index() -> HttpResponse {
|
|
HttpResponse::Ok().body("Hello")
|
|
}
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
use actix_web::{web, App, HttpServer};
|
|
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
.wrap(middleware::NormalizePath::default())
|
|
.route("/resource/", web::to(index))
|
|
})
|
|
.bind(("127.0.0.1", 8080))?
|
|
.run()
|
|
.await
|
|
}
|
|
// </norm>
|