mirror of
https://github.com/metabolist/metatext
synced 2025-01-04 14:02:02 +01:00
15 lines
286 B
Swift
15 lines
286 B
Swift
// 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? {
|
|
NSDataAsset(name: "TimelineJSON")!.data
|
|
}
|
|
}
|