1
0
mirror of https://github.com/actix/actix-website synced 2025-02-02 12:19:04 +01:00

21 lines
454 B
Rust
Raw Normal View History

2019-06-17 15:15:33 -04:00
// <auto>
2020-09-12 16:21:54 +01:00
use actix_web::{get, http::ContentEncoding, middleware, App, HttpResponse, HttpServer};
2019-06-17 15:15:33 -04:00
2020-09-12 16:21:54 +01:00
#[get("/")]
2019-12-29 02:59:48 +09:00
async fn index() -> HttpResponse {
2019-06-17 15:15:33 -04:00
HttpResponse::Ok().body("data")
}
2020-09-12 16:21:54 +01:00
#[actix_web::main]
2019-12-29 02:59:48 +09:00
async fn main() -> std::io::Result<()> {
2019-06-26 01:58:47 -04:00
HttpServer::new(|| {
App::new()
2019-06-26 14:15:03 -04:00
.wrap(middleware::Compress::new(ContentEncoding::Br))
2020-09-12 16:21:54 +01:00
.service(index)
2019-06-26 01:58:47 -04:00
})
2020-09-12 16:21:54 +01:00
.bind("127.0.0.1:8080")?
2019-06-26 01:58:47 -04:00
.run()
2019-12-29 02:59:48 +09:00
.await
2019-06-17 15:15:33 -04:00
}
// </auto>