mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-30 03:51:05 +00:00
24 lines
435 B
Swift
24 lines
435 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
enum InstanceEndpoint {
|
||
|
case instance
|
||
|
}
|
||
|
|
||
|
extension InstanceEndpoint: MastodonEndpoint {
|
||
|
typealias ResultType = Instance
|
||
|
|
||
|
var pathComponentsInContext: [String] {
|
||
|
switch self {
|
||
|
case .instance: return ["instance"]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var method: HTTPMethod {
|
||
|
switch self {
|
||
|
case .instance: return .get
|
||
|
}
|
||
|
}
|
||
|
}
|