1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/actix-http/examples/hello-world.rs

33 lines
913 B
Rust
Raw Normal View History

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