metatext-app-ios-iphone-ipad/Development Assets/Mastodon API Stubs/ContextEndpoint+Stubbing.swift

19 lines
364 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Mastodon
extension ContextEndpoint: Stubbing {
func dataString(url: URL) -> String? {
switch self {
case .context:
return """
{
"ancestors": [],
"descendants": []
}
"""
}
}
}