From 5b70003f546c61cae627357640aec4925c4af79e Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Thu, 22 May 2025 15:43:54 -0400 Subject: [PATCH] Endpoint is now available --- src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.rs b/src/main.rs index a155648..291f4aa 100644 --- a/src/main.rs +++ b/src/main.rs @@ -81,6 +81,10 @@ pub mod init { crate::callers::endpoints::NEXTQUEUESONG, get(crate::callers::song::endpoint::fetch_queue_song), ) + .route( + crate::callers::endpoints::QUEUESONGUPDATE, + patch(crate::callers::song::endpoint::update_song_queue) + ) .route( crate::callers::endpoints::QUEUEMETADATA, post(crate::callers::metadata::endpoint::queue_metadata),