Public Access
19 lines
485 B
C#
19 lines
485 B
C#
namespace MeetingAssistant.Speakers;
|
|
|
|
public sealed class NoopSpeakerIdentityMatchValidator : ISpeakerIdentityMatchValidator
|
|
{
|
|
public Task<bool> ValidateSampleAsync(
|
|
byte[] wavBytes,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
return Task.FromResult(true);
|
|
}
|
|
|
|
public Task<bool> ValidateMatchAsync(
|
|
SpeakerIdentityMatchValidationRequest request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
return Task.FromResult(true);
|
|
}
|
|
}
|