1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02:00

Fix actix-http examples (#1259)

Fix actix-http examples
This commit is contained in:
linkmauve
2020-01-06 16:15:04 +01:00
committed by Yuki Okushi
parent 2803fcbe22
commit f5fd6bc49f
3 changed files with 9 additions and 3 deletions

View File

@ -19,7 +19,8 @@ async fn handle_request(mut req: Request) -> Result<Response, Error> {
.body(body))
}
fn main() -> io::Result<()> {
#[actix_rt::main]
async fn main() -> io::Result<()> {
env::set_var("RUST_LOG", "echo=info");
env_logger::init();
@ -28,4 +29,5 @@ fn main() -> io::Result<()> {
HttpService::build().finish(handle_request).tcp()
})?
.run()
.await
}