Refactor modules

This commit is contained in:
2022-01-17 19:54:49 +01:00
parent 300e692fc7
commit 7a3b5aa6a3
11 changed files with 126 additions and 108 deletions

View File

@@ -0,0 +1,5 @@
use actix_web::HttpResponse;
pub async fn ping() -> HttpResponse {
HttpResponse::Ok().finish()
}