Sped up artist enrichment at least somewhat
CI / check (push) Successful in 1m30s
CI / docker (push) Successful in 2m7s

This commit is contained in:
Connor Johnstone
2026-03-21 15:08:28 -04:00
parent 43f4dad038
commit 31d54651e6
5 changed files with 74 additions and 6 deletions
+6
View File
@@ -48,6 +48,12 @@ pub trait MetadataFetcher: Send + Sync {
&self,
artist_mbid: &str,
) -> impl Future<Output = DataResult<Vec<ReleaseGroupEntry>>> + Send;
/// Resolve a release-group MBID to a concrete release MBID (first release in the group).
fn resolve_release_from_group(
&self,
release_group_mbid: &str,
) -> impl Future<Output = DataResult<String>> + Send;
}
/// Fetches artist image URLs from an external source.