summaryrefslogtreecommitdiff
path: root/rust/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/routes')
-rw-r--r--rust/src/routes/hello.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/rust/src/routes/hello.rs b/rust/src/routes/hello.rs
deleted file mode 100644
index c356081..0000000
--- a/rust/src/routes/hello.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-use crate::AppState;
-use actix_web::{get, web, HttpResponse};
-use serde::Deserialize;
-
-#[get("/hello")]
-pub async fn hello_actix(app_state: web::Data<AppState>) -> HttpResponse {
- struct Song {
- }
-
- return HttpResponse::Ok().json(databases);
-}