1
0
mirror of https://github.com/actix/actix-website synced 2025-02-23 20:53:01 +01:00
2022-07-19 11:11:45 +01:00

27 lines
592 B
Rust

pub mod auto;
pub mod chunked;
pub mod identity;
pub mod identity_two;
pub mod json_resp;
// <builder>
use actix_web::{http::header::ContentType, HttpResponse};
async fn index() -> HttpResponse {
HttpResponse::Ok()
.content_type(ContentType::plaintext())
.insert_header(("X-Hdr", "sample"))
.body("data")
}
// </builder>
#[actix_web::main]
async fn main() -> std::io::Result<()> {
use actix_web::{web, App, HttpServer};
HttpServer::new(|| App::new().route("/", web::get().to(index)))
.bind(("127.0.0.1", 8080))?
.run()
.await
}