metatext/Mastodon/Sources/Mastodon/API/Endpoints/PreferencesEndpoint.swift
2020-08-30 18:40:58 -07:00

25 lines
488 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import HTTP
public enum PreferencesEndpoint {
case preferences
}
extension PreferencesEndpoint: Endpoint {
public typealias ResultType = Preferences
public var pathComponentsInContext: [String] {
switch self {
case .preferences: return ["preferences"]
}
}
public var method: HTTPMethod {
switch self {
case .preferences: return .get
}
}
}