Implemented the GetSeriesEndpoint endpoint.

This commit is contained in:
Javier Cicchelli 2023-04-18 21:49:54 +02:00
parent 316447f98e
commit c697d3fd1e

View File

@ -0,0 +1,16 @@
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?
}