This PR contains the work done to update the `swift-libs` package dependency to its latest version, and it also includes the fixes to the references to the **Communication** and **Foundation** libraries. Reviewed-on: #22 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
36 lines
994 B
Swift
36 lines
994 B
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the AmiiboService open source project
|
|
//
|
|
// Copyright (c) 2023 Röck+Cöde VoF. and the AmiiboService project authors
|
|
// Licensed under the EUPL 1.2 or later.
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of AmiiboService project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import Foundation
|
|
import SwiftLibsCommunication
|
|
|
|
struct GetAmiiboEndpoint: Endpoint {
|
|
|
|
// MARK: Properties
|
|
|
|
let scheme: String = .Scheme.https
|
|
let host: String = .Host.amiiboApi
|
|
let port: Int? = nil
|
|
let path: String = .Path.amiibo
|
|
let parameters: Parameters
|
|
let method: HTTPRequestMethod = .get
|
|
let headers: [String : String] = [:]
|
|
let body: Data? = nil
|
|
|
|
// MARK: Initialisers
|
|
|
|
init(parameters: Parameters) {
|
|
self.parameters = parameters
|
|
}
|
|
|
|
}
|