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