Add method to manually add artist metadata #85

Merged
wojtek merged 16 commits from 55---add-method-to-manually-add-artist-metadata into main 2024-01-10 22:33:58 +01:00
Showing only changes of commit e1306e089a - Show all commits

View File

@ -1068,17 +1068,16 @@ mod tests {
use super::*;
static MUSICBRAINZ: &'static str =
static MUSICBRAINZ: &str =
"https://musicbrainz.org/artist/d368baa8-21ca-4759-9731-0b2753071ad8";
static MUSICBRAINZ_2: &'static str =
static MUSICBRAINZ_2: &str =
"https://musicbrainz.org/artist/823869a5-5ded-4f6b-9fb7-2a9344d83c6b";
static MUSICBUTLER: &'static str = "https://www.musicbutler.io/artist-page/483340948";
static MUSICBUTLER_2: &'static str = "https://www.musicbutler.io/artist-page/658903042/";
static BANDCAMP: &'static str = "https://thelasthangmen.bandcamp.com/";
static BANDCAMP_2: &'static str = "https://viciouscrusade.bandcamp.com/";
static QOBUZ: &'static str = "https://www.qobuz.com/nl-nl/interpreter/the-last-hangmen/1244413";
static QOBUZ_2: &'static str =
"https://www.qobuz.com/nl-nl/interpreter/vicious-crusade/7522386";
static MUSICBUTLER: &str = "https://www.musicbutler.io/artist-page/483340948";
static MUSICBUTLER_2: &str = "https://www.musicbutler.io/artist-page/658903042/";
static BANDCAMP: &str = "https://thelasthangmen.bandcamp.com/";
static BANDCAMP_2: &str = "https://viciouscrusade.bandcamp.com/";
static QOBUZ: &str = "https://www.qobuz.com/nl-nl/interpreter/the-last-hangmen/1244413";
static QOBUZ_2: &str = "https://www.qobuz.com/nl-nl/interpreter/vicious-crusade/7522386";
pub static COLLECTION: Lazy<Vec<Artist>> = Lazy::new(|| collection!());