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

12 lines
222 B
Swift

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