metatext-app-ios-iphone-ipad/MastodonAPI/Sources/MastodonAPI/Endpoints/ListsEndpoint.swift

22 lines
359 B
Swift
Raw Normal View History

2020-08-29 05:50:58 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
2020-08-31 03:40:58 +02:00
import HTTP
import Mastodon
2020-08-29 05:50:58 +02:00
2020-08-31 01:33:11 +02:00
public enum ListsEndpoint {
2020-08-29 05:50:58 +02:00
case lists
}
2020-08-31 01:59:49 +02:00
extension ListsEndpoint: Endpoint {
2020-09-26 05:28:50 +02:00
public typealias ResultType = [List]
2020-08-29 05:50:58 +02:00
2020-08-31 01:33:11 +02:00
public var pathComponentsInContext: [String] {
2020-08-29 05:50:58 +02:00
["lists"]
}
2020-08-31 01:33:11 +02:00
public var method: HTTPMethod {
2020-08-29 05:50:58 +02:00
.get
}
}