mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-26 18:11:06 +00:00
11 lines
234 B
Swift
11 lines
234 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
import UIKit
|
|
import Mastodon
|
|
|
|
extension TimelinesEndpoint: Stubbing {
|
|
func data(url: URL) -> Data? {
|
|
NSDataAsset(name: "timelineJSON")!.data
|
|
}
|
|
}
|