From 9d37fd108b286112c1dc2c8e627713bdf13f487e Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Mon, 26 May 2025 15:52:28 -0400 Subject: [PATCH] Endpoint is now available --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 785abb3..73f7892 100644 --- a/src/main.rs +++ b/src/main.rs @@ -101,6 +101,9 @@ pub mod init { crate::callers::endpoints::QUEUECOVERARTLINK, patch(crate::callers::coverart::endpoint::link), ) + .route(crate::callers::endpoints::QUEUECOVERARTDATAWIPE, + patch(crate::callers::coverart::endpoint::wipe_data_from_coverart_queue) + ) .route( crate::callers::endpoints::CREATESONG, post(crate::callers::song::endpoint::create_metadata),