11 lines
235 B
C#
11 lines
235 B
C#
using System.Net.WebSockets;
|
|
|
|
namespace Health.Application.Speech;
|
|
|
|
public interface IRealtimeSpeechRecognitionProxy
|
|
{
|
|
bool IsConfigured { get; }
|
|
|
|
Task ProxyAsync(WebSocket clientSocket, CancellationToken cancellationToken);
|
|
}
|