Integrated the RecordingService and the TranscribingService protocols into the RecordingView view in the Recording package target.

This commit is contained in:
2026-07-03 21:37:40 +02:00
parent 31b778a36e
commit 376be4940b
4 changed files with 316 additions and 21 deletions
+5 -2
View File
@@ -8,9 +8,12 @@ struct ContentView: View {
// MARK: Body
/// The content of the view: the recording feature's view.
/// The content of the view: the recording feature's view, attached to the simulated recording and transcribing services.
var body: some View {
RecordingView()
RecordingView(
recorder: SimulatedRecordingService(),
transcriber: SimulatedTranscribingService()
)
}
}