use actix_web::{HttpResponse, Responder}; pub async fn root_index() -> impl Responder { HttpResponse::Ok().body("Hello world!") }