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

12 lines
234 B
Swift
Raw Normal View History

2020-08-18 05:13:37 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import UIKit
2020-08-30 23:33:11 +00:00
import Mastodon
2020-08-18 05:13:37 +00:00
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
}
}