diff --git a/src/main.rs b/src/main.rs index 6032046..067d4f5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -101,6 +101,10 @@ pub mod init { crate::callers::endpoints::CREATESONG, post(crate::callers::song::endpoint::create_metadata), ) + .route( + crate::callers::endpoints::CREATECOVERART, + post(crate::callers::coverart::endpoint::create_coverart), + ) } pub async fn app() -> axum::Router {