metatext-app-ios-iphone-ipad/Development Assets/Mastodon API Stubs/TimelinesEndpoint+Stubbing....

12 lines
234 B
Swift
Raw Normal View History

2020-08-18 07:13:37 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import UIKit
2020-08-31 01:33:11 +02:00
import Mastodon
2020-08-18 07:13:37 +02:00
extension TimelinesEndpoint: Stubbing {
func data(url: URL) -> Data? {
2020-08-27 00:36:11 +02:00
NSDataAsset(name: "timelineJSON")!.data
2020-08-18 07:13:37 +02:00
}
}