metatext/Development Assets/Mastodon API Stubs/TimelinesEndpoint+Stubbing.swift
2020-08-17 23:50:45 -07:00

14 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
}
}