Added better artist bio/pics/lyrics

This commit is contained in:
Connor Johnstone
2026-03-19 14:53:39 -04:00
parent f6b363c40f
commit 51bcf26482
9 changed files with 580 additions and 23 deletions

View File

@@ -2,6 +2,7 @@ pub mod albums;
pub mod artists;
pub mod auth;
pub mod downloads;
pub mod lyrics;
pub mod search;
pub mod system;
pub mod tracks;
@@ -17,6 +18,7 @@ pub fn configure(cfg: &mut web::ServiceConfig) {
.configure(tracks::configure)
.configure(search::configure)
.configure(downloads::configure)
.configure(lyrics::configure)
.configure(system::configure),
);
}