1
0
mirror of https://github.com/actix/actix-website synced 2024-12-03 20:22:13 +01:00
actix-website/examples/application/src/main.rs

23 lines
530 B
Rust
Raw Normal View History

use actix_web::{web, App, HttpResponse, HttpServer};
2018-05-23 21:28:12 +02:00
pub mod app;
pub mod combine;
pub mod state;
pub mod vh;
2018-05-23 22:01:33 +02:00
2019-06-13 09:24:25 +02:00
#[rustfmt::skip]
2018-05-24 18:31:40 +02:00
// <run_server>
2018-05-23 21:28:12 +02:00
fn main() {
HttpServer::new(|| {
App::new()
.service(
web::scope("/app1")
.route("/", web::to(|| HttpResponse::Ok())))
.service(
web::scope("/app2")
.route("/", web::to(|| HttpResponse::Ok())))
.route("/", web::to(|| HttpResponse::Ok()))
});
2018-05-23 21:28:12 +02:00
}
// </run_server>