1
0
mirror of https://github.com/actix/actix-website synced 2024-12-03 20:22:13 +01:00
actix-website/examples/responses/src/main.rs

30 lines
634 B
Rust
Raw Normal View History

pub mod auto;
pub mod brotli;
pub mod chunked;
2019-06-26 20:15:03 +02:00
pub mod compress;
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-26 07:58:47 +02:00
use actix_web::{http::ContentEncoding, middleware::BodyEncoding, HttpResponse};
2019-06-17 21:15:33 +02:00
2019-06-26 07:58:47 +02:00
fn index() -> HttpResponse {
2019-06-17 21:15:33 +02:00
HttpResponse::Ok()
.encoding(ContentEncoding::Br)
.content_type("plain/text")
.header("X-Hdr", "sample")
.body("data")
}
// </builder>
pub fn main() {
2019-06-26 07:58:47 +02:00
use actix_web::{web, App, HttpServer};
HttpServer::new(|| App::new().route("/", web::get().to(index)))
.bind("127.0.0.1:8088")
.unwrap()
.run()
.unwrap();
}