1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-13 12:15:24 +01:00
actix-web/actix-http/examples/hello-world.rs

30 lines
834 B
Rust
Raw Normal View History

use std::{env, io};
2019-03-09 10:39:06 -08:00
use actix_http::{HttpService, Response};
2018-12-10 18:08:33 -08:00
use actix_server::Server;
2020-05-18 11:45:26 +09:00
use futures_util::future;
2018-11-28 09:42:04 +03:30
use http::header::HeaderValue;
2018-12-10 18:08:33 -08:00
use log::info;
2018-11-23 07:42:40 +03:30
#[actix_rt::main]
async fn main() -> io::Result<()> {
2018-11-23 07:42:40 +03:30
env::set_var("RUST_LOG", "hello_world=info");
env_logger::init();
2018-12-10 18:08:33 -08:00
Server::build()
2018-11-28 09:42:04 +03:30
.bind("hello-world", "127.0.0.1:8080", || {
2019-03-09 10:39:06 -08:00
HttpService::build()
2018-11-28 09:42:04 +03:30
.client_timeout(1000)
.client_disconnect(1000)
.finish(|_req| {
info!("{:?}", _req);
let mut res = Response::Ok();
res.header("x-head", HeaderValue::from_static("dummy value!"));
future::ok::<_, ()>(res.body("Hello world!"))
2018-12-06 14:32:52 -08:00
})
2019-12-02 17:33:11 +06:00
.tcp()
})?
.run()
.await
2018-11-23 07:42:40 +03:30
}