VirtWeb/virtweb_backend/src/controllers/server_controller.rs
2023-09-02 08:07:06 +02:00

6 lines
135 B
Rust

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