mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-26 18:11:06 +00:00
18 lines
348 B
Swift
18 lines
348 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension ContextEndpoint: Stubbing {
|
||
|
func dataString(url: URL) -> String? {
|
||
|
switch self {
|
||
|
case .context:
|
||
|
return """
|
||
|
{
|
||
|
"ancestors": [],
|
||
|
"descendants": []
|
||
|
}
|
||
|
"""
|
||
|
}
|
||
|
}
|
||
|
}
|