metatext/Networking/Mastodon API/Endpoints/InstanceEndpoint.swift
2020-08-26 21:04:06 -07:00

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
}
}
}