mirror of
https://github.com/actix/actix-website
synced 2024-11-28 10:32:38 +01:00
13 lines
301 B
Rust
13 lines
301 B
Rust
|
// <identity>
|
||
|
use actix_web::{
|
||
|
http::ContentEncoding, middleware::BodyEncoding, HttpRequest, HttpResponse,
|
||
|
};
|
||
|
|
||
|
fn index(req: HttpRequest) -> HttpResponse {
|
||
|
HttpResponse::Ok()
|
||
|
// v- disable compression
|
||
|
.encoding(ContentEncoding::Identity)
|
||
|
.body("data")
|
||
|
}
|
||
|
// </identity>
|