1
0
mirror of https://github.com/actix/actix-website synced 2025-04-03 21:34:15 +02:00
2019-12-29 03:32:56 +09:00

20 lines
381 B
Rust

pub mod keep_alive;
// pub mod keep_alive_tp;
pub mod signals;
pub mod ssl;
pub mod workers;
// <main>
use actix_web::{web, App, HttpResponse, HttpServer};
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new().route("/", web::get().to(|| HttpResponse::Ok()))
})
.bind("127.0.0.1:8088")?
.run()
.await
}
// </main>