1
0
mirror of https://github.com/actix/examples synced 2024-12-01 01:24:35 +01:00
examples/async_ex2/src/bin/main.rs
2019-12-07 23:59:24 +06:00

19 lines
431 B
Rust

use actix_web::{middleware, App, HttpServer};
use async_ex2::appconfig::config_app;
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
std::env::set_var("RUST_LOG", "actix_server=info,actix_web=info");
env_logger::init();
HttpServer::new(|| {
App::new()
.configure(config_app)
.wrap(middleware::Logger::default())
})
.bind("127.0.0.1:8080")?
.start()
.await
}