mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-29 03:21:02 +00:00
19 lines
319 B
Swift
19 lines
319 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
enum ListsEndpoint {
|
|
case lists
|
|
}
|
|
|
|
extension ListsEndpoint: MastodonEndpoint {
|
|
typealias ResultType = [MastodonList]
|
|
|
|
var pathComponentsInContext: [String] {
|
|
["lists"]
|
|
}
|
|
|
|
var method: HTTPMethod {
|
|
.get
|
|
}
|
|
}
|