metatext/Mastodon/Sources/MastodonStubs/Paged+Stubbing.swift
2020-09-01 00:33:49 -07:00

12 lines
234 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Mastodon
import Stubbing
extension Paged: Stubbing where T: Stubbing {
public func data(url: URL) -> Data? {
endpoint.data(url: url)
}
}