[Feature] All endpoints #2

Merged
javier merged 11 commits from feature/endpoints into main 2023-04-18 20:03:13 +00:00
Showing only changes of commit c697d3fd1e - Show all commits

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