1
0
mirror of https://github.com/actix/actix-website synced 2025-02-24 04:53:20 +01:00

29 lines
626 B
Rust
Raw Normal View History

pub mod auto;
pub mod brotli;
pub mod chunked;
2019-06-26 14:15:03 -04:00
pub mod compress;
pub mod identity;
pub mod identity_two;
pub mod json_resp;
2019-06-26 01:58:47 -04:00
2019-06-17 15:15:33 -04:00
// <builder>
2022-02-26 03:56:24 +00:00
use actix_web::{http::header::ContentType, HttpResponse};
2019-06-17 15:15:33 -04:00
2019-12-29 02:59:48 +09:00
async fn index() -> HttpResponse {
2019-06-17 15:15:33 -04:00
HttpResponse::Ok()
2022-02-26 03:56:24 +00:00
.content_type(ContentType::plaintext())
.insert_header(("X-Hdr", "sample"))
2019-06-17 15:15:33 -04:00
.body("data")
}
// </builder>
2020-09-12 16:21:54 +01:00
#[actix_web::main]
2019-12-29 02:59:48 +09:00
async fn main() -> std::io::Result<()> {
2019-06-26 01:58:47 -04:00
use actix_web::{web, App, HttpServer};
HttpServer::new(|| App::new().route("/", web::get().to(index)))
2022-02-26 03:56:24 +00:00
.bind(("127.0.0.1", 8080))?
2019-06-26 01:58:47 -04:00
.run()
2019-12-29 02:59:48 +09:00
.await
}