Add base server

This commit is contained in:
2023-09-02 08:07:06 +02:00
parent 0f3ddea04e
commit 0ac1480572
9 changed files with 2061 additions and 2 deletions

View File

@ -0,0 +1 @@
pub mod server_controller;

View File

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