Implemented the AudioRecordingService service in the Sample app target.

This commit is contained in:
2026-07-03 22:01:17 +02:00
parent 376be4940b
commit a02d5ce52f
3 changed files with 139 additions and 2 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ struct ContentView: View {
// MARK: Body
/// The content of the view: the recording feature's view, attached to the simulated recording and transcribing services.
/// The content of the view: the recording feature's view, attached to the microphone-backed recording service and the simulated transcribing service.
var body: some View {
RecordingView(
recorder: SimulatedRecordingService(),
recorder: AudioRecordingService(),
transcriber: SimulatedTranscribingService()
)
}