mirror of
https://github.com/actix/actix-website
synced 2025-02-02 12:19:04 +01:00
22 lines
522 B
Rust
22 lines
522 B
Rust
// <brotli-two>
|
|
use actix_web::{http::ContentEncoding, dev::BodyEncoding, HttpResponse};
|
|
|
|
async fn index_br() -> HttpResponse {
|
|
HttpResponse::Ok().body("data")
|
|
}
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
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", 8080))?
|
|
.run()
|
|
.await
|
|
}
|
|
// </brotli-two>
|