metatext/Networking/Mastodon API/Endpoints/ListsEndpoint.swift
Justin Mazzocchi b80fd9146a
Lists
2020-08-28 20:50:58 -07:00

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
}
}