1
0
mirror of https://github.com/actix/actix-website synced 2024-12-02 19:52:23 +01:00
actix-website/examples/application/src/main.rs

28 lines
618 B
Rust
Raw Normal View History

2020-01-02 07:56:32 +01:00
use actix_web::{web, App, HttpResponse, HttpServer};
2018-05-23 21:28:12 +02:00
pub mod app;
pub mod combine;
pub mod config;
pub mod scope;
pub mod state;
pub mod vh;
2018-05-23 22:01:33 +02:00
// <multi>
2020-09-12 17:21:54 +02:00
#[actix_web::main]
2020-01-02 07:56:32 +01:00
async fn main() -> std::io::Result<()> {
2020-01-02 07:43:41 +01:00
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()))
})
2020-09-12 17:21:54 +02:00
.bind("127.0.0.1:8080")?
2020-01-02 07:43:41 +01:00
.run()
.await
2018-05-23 21:28:12 +02:00
}
// </multi>