metatext-app-ios-iphone-ipad/Mastodon/Sources/MastodonStubs/TimelinesEndpoint+Stubbing....

12 lines
294 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Mastodon
import Stubbing
extension TimelinesEndpoint: Stubbing {
public func data(url: URL) -> Data? {
try? Data(contentsOf: Bundle.module.url(forResource: "timeline", withExtension: "json")!)
}
}