// use actix_web::{web, App, HttpRequest, Responder}; fn index(_req: HttpRequest) -> impl Responder { "Hello world!" } #[rustfmt::skip] pub fn main() { App::new().service( web::scope("/app") .route("/index.html", web::get().to(index))); } //