2019-06-19 06:20:50 +02:00
|
|
|
pub mod auto;
|
|
|
|
pub mod brotli;
|
|
|
|
pub mod chunked;
|
2019-06-26 20:15:03 +02:00
|
|
|
pub mod compress;
|
2019-06-19 06:20:50 +02:00
|
|
|
pub mod identity;
|
|
|
|
pub mod identity_two;
|
|
|
|
pub mod json_resp;
|
2019-06-26 07:58:47 +02:00
|
|
|
|
2019-06-17 21:15:33 +02:00
|
|
|
// <builder>
|
2019-06-28 19:31:30 +02:00
|
|
|
use actix_web::HttpResponse;
|
2019-06-17 21:15:33 +02:00
|
|
|
|
2019-12-28 18:59:48 +01:00
|
|
|
async fn index() -> HttpResponse {
|
2019-06-17 21:15:33 +02:00
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type("plain/text")
|
|
|
|
.header("X-Hdr", "sample")
|
|
|
|
.body("data")
|
|
|
|
}
|
|
|
|
// </builder>
|
|
|
|
|
2020-09-12 17:21:54 +02:00
|
|
|
#[actix_web::main]
|
2019-12-28 18:59:48 +01:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-06-26 07:58:47 +02:00
|
|
|
use actix_web::{web, App, HttpServer};
|
|
|
|
|
|
|
|
HttpServer::new(|| App::new().route("/", web::get().to(index)))
|
2020-09-12 17:21:54 +02:00
|
|
|
.bind("127.0.0.1:8080")?
|
2019-06-26 07:58:47 +02:00
|
|
|
.run()
|
2019-12-28 18:59:48 +01:00
|
|
|
.await
|
2019-06-19 06:20:50 +02:00
|
|
|
}
|