mirror of
https://github.com/metabolist/metatext
synced 2025-01-03 21:41:02 +01:00
12 lines
222 B
Swift
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
|
|
}
|
|
}
|