feat: Introduce ITranscriptionOrchestrator and related interfaces, refactoring DaemonService and other components to use dependency injection.
This commit is contained in:
11
Core/Interfaces/ITranscriptionOrchestrator.cs
Normal file
11
Core/Interfaces/ITranscriptionOrchestrator.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Net.Sockets;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Toak.Core.Interfaces;
|
||||
|
||||
public interface ITranscriptionOrchestrator
|
||||
{
|
||||
Task ProcessStartRecordingAsync();
|
||||
Task ProcessStopRecordingAsync(Socket client, bool pipeToStdout, bool copyToClipboard);
|
||||
void ProcessAbortAsync();
|
||||
}
|
||||
Reference in New Issue
Block a user