summaryrefslogtreecommitdiff
path: root/src/routes/hello.rs
diff options
context:
space:
mode:
authorniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2024-11-12 20:53:18 +0100
committerniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2024-11-12 20:53:18 +0100
commit6a762589e2f557cb1b2096c6e8d888129c3e2fca (patch)
tree09f779034fa564f3b97d9fe86158b2f3acb887e1 /src/routes/hello.rs
parent6d57e0d0da0bbe5461acfb0b1809f5d22a5b4fcc (diff)
basic routing for songs
Diffstat (limited to 'src/routes/hello.rs')
-rw-r--r--src/routes/hello.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/routes/hello.rs b/src/routes/hello.rs
deleted file mode 100644
index c356081..0000000
--- a/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);
-}