Added the playlist generator

This commit is contained in:
Connor Johnstone
2026-03-20 18:09:47 -04:00
parent 9d6c0e31c1
commit ea6a6410f3
17 changed files with 962 additions and 116 deletions

View File

@@ -3,6 +3,7 @@ pub mod artists;
pub mod auth;
pub mod downloads;
pub mod lyrics;
pub mod playlists;
pub mod search;
pub mod system;
pub mod tracks;
@@ -21,6 +22,7 @@ pub fn configure(cfg: &mut web::ServiceConfig) {
.configure(downloads::configure)
.configure(lyrics::configure)
.configure(system::configure)
.configure(ytauth::configure),
.configure(ytauth::configure)
.configure(playlists::configure),
);
}