17 lines
354 B
Swift
17 lines
354 B
Swift
|
import Communications
|
||
|
import Foundation
|
||
|
|
||
|
struct GetSeriesEndpoint: Endpoint {
|
||
|
|
||
|
// MARK: Properties
|
||
|
|
||
|
let scheme: String = .Scheme.https
|
||
|
let host: String = .Host.amiiboApi
|
||
|
let port: Int?
|
||
|
let path: String = .Path.series
|
||
|
let method: HTTPRequestMethod = .get
|
||
|
let headers: [String : String] = [:]
|
||
|
let body: Data?
|
||
|
|
||
|
}
|