Files
meeting-assistant/MeetingAssistant/Speakers/NoopSpeakerIdentityMatcher.cs
T

12 lines
329 B
C#

namespace MeetingAssistant.Speakers;
public sealed class NoopSpeakerIdentityMatcher : ISpeakerIdentityMatcher
{
public Task<SpeakerIdentityMatch?> MatchAsync(
SpeakerIdentityMatchRequest request,
CancellationToken cancellationToken)
{
return Task.FromResult<SpeakerIdentityMatch?>(null);
}
}