1
0
mirror of https://github.com/actix/actix-website synced 2025-03-01 15:04:16 +01:00
2020-09-12 16:21:54 +01:00

29 lines
640 B
Rust

#![allow(dead_code)]
use actix_web::{web, App, HttpResponse, HttpServer};
// <combine>
struct State1;
struct State2;
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.service(
web::scope("/app1")
.data(State1)
.route("/", web::to(|| HttpResponse::Ok())),
)
.service(
web::scope("/app2")
.data(State2)
.route("/", web::to(|| HttpResponse::Ok())),
)
})
.bind("127.0.0.1:8080")?
.run()
.await
}
// </combine>