1
0
mirror of https://github.com/actix/actix-website synced 2024-12-01 03:24:36 +01:00
actix-website/examples/responses/src/identity.rs

18 lines
397 B
Rust
Raw Normal View History

2019-06-17 21:15:33 +02:00
// <identity>
use actix_web::{
http::ContentEncoding, middleware::BodyEncoding, HttpRequest, HttpResponse,
};
fn index(_req: HttpRequest) -> HttpResponse {
2019-06-17 21:15:33 +02:00
HttpResponse::Ok()
// v- disable compression
.encoding(ContentEncoding::Identity)
.body("data")
}
// </identity>
use actix_web::{web, App};
pub fn main() {
App::new().route("/", web::get().to(index));
}