amiibo-service/Sources/Endpoints/GetCharacterEndpoint.swift

17 lines
360 B
Swift
Raw Normal View History

import Communications
import Foundation
struct GetCharacterEndpoint: Endpoint {
// MARK: Properties
let scheme: String = .Scheme.https
let host: String = .Host.amiiboApi
let port: Int?
let path: String = .Path.character
let method: HTTPRequestMethod = .get
let headers: [String : String] = [:]
let body: Data?
}