mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
17 lines
422 B
Swift
17 lines
422 B
Swift
#if os(macOS)
|
|
import Foundation
|
|
|
|
public final class AudioController: ObservableObject {
|
|
public init() {}
|
|
|
|
public func preload(itemIDs _: [String]) {}
|
|
|
|
public func downloadForOffline(itemID _: String) -> Bool { true }
|
|
|
|
func updateDuration(forItem _: SpeechItem, newDuration _: TimeInterval) {}
|
|
|
|
public func stopWithError() {}
|
|
|
|
public static func removeAudioFiles(itemID _: String) {}
|
|
}
|
|
#endif
|