From b8ec22a9f553d2b872716c157e1b56384c096fc4 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Tue, 19 Aug 2025 11:51:42 -0400 Subject: [PATCH] tsk-176: Endpoint is now available --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index abb803b..d6971ba 100644 --- a/src/main.rs +++ b/src/main.rs @@ -190,6 +190,7 @@ pub mod init { axum::middleware::from_fn(crate::auth::auth::), ), ) + .route(crate::callers::endpoints::GETALLSONGS, get(crate::callers::song::endpoint::get_all_songs)) } pub async fn app() -> axum::Router {