mirror of
https://github.com/actix/actix-website
synced 2025-03-14 20:26:26 +01:00
22 lines
425 B
Rust
22 lines
425 B
Rust
// <compress>
|
|
use actix_web::{middleware, HttpResponse};
|
|
|
|
fn index_br() -> HttpResponse {
|
|
HttpResponse::Ok().body("data")
|
|
}
|
|
|
|
pub fn main() {
|
|
use actix_web::{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();
|
|
}
|
|
// </compress>
|