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

24 lines
464 B
Swift

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