1
0

feat: Introduce ITranscriptionOrchestrator and related interfaces, refactoring DaemonService and other components to use dependency injection.

This commit is contained in:
2026-02-28 15:36:03 +01:00
parent ac0ac2397b
commit 0577640da9
18 changed files with 356 additions and 175 deletions

View 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();
}