mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-26 10:10:58 +00:00
23 lines
464 B
Swift
23 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
|
|
}
|
|
}
|
|
}
|