refactor: drop EnrichmentHandler alias, use MovieEnrichmentHandler directly

This commit is contained in:
2026-06-11 13:46:30 +02:00
parent e8fa24bf9b
commit 53b7f730cb
2 changed files with 2 additions and 2 deletions

View File

@@ -138,7 +138,7 @@ async fn main() -> anyhow::Result<()> {
Ok(client) => {
tracing::info!("TMDb enrichment enabled");
let client = Arc::new(client);
let handler = Arc::new(tmdb_enrichment::EnrichmentHandler::new(
let handler = Arc::new(tmdb_enrichment::MovieEnrichmentHandler::new(
Arc::clone(&client) as Arc<dyn MovieEnrichmentClient>,
Arc::clone(&ctx.repos.movie),
Arc::clone(&ctx.repos.movie_profile),