Files
jsmr/JSMR.Infrastructure/Ingestion/VoiceWorkUpdaterRepository.cs
Brian Bicknell 1d40013837
All checks were successful
ci / build-test (push) Successful in 2m27s
ci / publish-image (push) Has been skipped
Fixed voice work updater bug. Added integration tests for voice work search updates (Japanese).
2026-03-05 23:29:29 -05:00

13 lines
413 B
C#

using JSMR.Application.Enums;
using JSMR.Application.Scanning.Ports;
using Microsoft.Extensions.DependencyInjection;
namespace JSMR.Infrastructure.Ingestion;
public class VoiceWorkUpdaterRepository(IServiceProvider serviceProvider) : IVoiceWorkUpdaterRepository
{
public IVoiceWorkUpdater? GetUpdater(Locale locale)
{
return serviceProvider.GetKeyedService<IVoiceWorkUpdater>(locale);
}
}