Renamed the RecordingService protocol in the Recording package target as Capturing.

This commit is contained in:
2026-07-04 13:41:56 +02:00
parent 69e30a9947
commit be130eb05f
8 changed files with 57 additions and 57 deletions
@@ -28,7 +28,7 @@ extension ContentView {
/// The service that captures the audio from the device's microphone.
@ObservationIgnored
let recorder: AudioRecordingService
let capturer: AudioCapturing
/// The service that transcribes the recorded audio into text on device.
@ObservationIgnored
@@ -41,7 +41,7 @@ extension ContentView {
init() {
self.locale = .current
self.locales = []
self.recorder = .init()
self.capturer = .init()
self.transcriber = .init()
}