metatext/Development Assets/Mastodon API Stubs/TimelinesEndpoint+Stubbing.swift

15 lines
286 B
Swift
Raw Normal View History

2020-08-18 05:13:37 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
#if canImport(UIKit)
import UIKit
#elseif canImport(AppKit)
import AppKit
#endif
extension TimelinesEndpoint: Stubbing {
func data(url: URL) -> Data? {
2020-08-26 22:36:11 +00:00
NSDataAsset(name: "timelineJSON")!.data
2020-08-18 05:13:37 +00:00
}
}