mirror of
https://github.com/actix/actix-website
synced 2025-01-23 00:25:55 +01:00
22 lines
493 B
Rust
22 lines
493 B
Rust
// <brotli-two>
|
|
use actix_web::{http::ContentEncoding, middleware::BodyEncoding, HttpResponse};
|
|
|
|
fn index_br() -> HttpResponse {
|
|
HttpResponse::Ok().body("data")
|
|
}
|
|
|
|
pub fn main() {
|
|
use actix_web::{middleware, web, App, HttpServer};
|
|
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
.wrap(middleware::Compress::new(ContentEncoding::Br))
|
|
.route("/", web::get().to(index_br))
|
|
})
|
|
.bind("127.0.0.1:8088")
|
|
.unwrap()
|
|
.run()
|
|
.unwrap();
|
|
}
|
|
// </brotli-two>
|