1
0
mirror of https://github.com/actix/examples synced 2025-02-13 05:52:20 +01:00

30 lines
845 B
Rust
Raw Normal View History

2018-05-08 11:08:43 -07:00
#[macro_use]
extern crate serde_derive;
2018-05-20 21:03:29 -07:00
use actix_web::{
2019-03-29 13:43:03 -07:00
http::header, middleware::cors::Cors, middleware::Logger, web, App, HttpServer,
2018-05-20 21:03:29 -07:00
};
mod user;
2019-03-29 13:43:03 -07:00
fn main() -> std::io::Result<()> {
std::env::set_var("RUST_LOG", "actix_web=info");
env_logger::init();
2019-03-29 13:43:03 -07:00
HttpServer::new(move || {
2018-05-08 11:08:43 -07:00
App::new()
2019-03-29 13:43:03 -07:00
.wrap(
Cors::new()
2019-03-30 09:43:07 +08:00
.allowed_origin("http://localhost:8080")
2018-05-08 11:08:43 -07:00
.allowed_methods(vec!["GET", "POST"])
.allowed_headers(vec![header::AUTHORIZATION, header::ACCEPT])
.allowed_header(header::CONTENT_TYPE)
2019-03-29 13:43:03 -07:00
.max_age(3600),
)
.wrap(Logger::default())
.service(web::resource("/user/info").route(web::post().to(user::info)))
2019-03-09 18:03:09 -08:00
})
2019-03-29 13:43:03 -07:00
.bind("127.0.0.1:8000")?
.run()
}