feat: have test unswer code

This commit is contained in:
Stepan Vladovskiy 2023-10-13 10:53:23 -03:00
parent f282f126a6
commit 4f3fe44e7a
2 changed files with 5 additions and 3 deletions

View File

@ -10,6 +10,11 @@ use std::sync::{Arc, Mutex};
use tokio::task::JoinHandle;
async fn test_handler() -> Result<HttpResponse, actix_web::Error> {
Ok(HttpResponse::Ok().body("Hello, World!"))
}
mod data;
#[derive(Clone)]

View File

@ -1,3 +0,0 @@
async fn test_handler() -> Result<HttpResponse, actix_web::Error> {
Ok(HttpResponse::Ok().body("Hello, World!"))
}