1
0
mirror of https://github.com/metabolist/metatext synced 2025-01-04 05:56:03 +01:00
metatext-app-ios-iphone-ipad/MastodonAPI/Sources/MastodonAPIStubs/StringsEndpoint+Stubbing.swift
Justin Mazzocchi 43e58bce35
Domain blocks
2020-12-03 19:13:18 -08:00

12 lines
261 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import MastodonAPI
import Stubbing
extension StringsEndpoint: Stubbing {
public func data(url: URL) -> Data? {
try? JSONSerialization.data(withJSONObject: ["ok.lol"])
}
}