metatext/MastodonAPI/Sources/MastodonAPIStubs/PreferencesEndpoint+Stubbing.swift
Justin Mazzocchi b4549521cb
Refactoring
2020-09-07 19:12:38 -07:00

12 lines
230 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import MastodonAPI
import Stubbing
extension PreferencesEndpoint: Stubbing {
public func data(url: URL) -> Data? {
StubData.preferences
}
}