amiibo-service/Sources/Endpoints/GetLastUpdatedEndpoint.swift
Javier Cicchelli e9f08c68da [Improvement] SwiftLibs package update (#22)
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>
2023-08-14 21:17:31 +00:00

30 lines
896 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 GetLastUpdatedEndpoint: Endpoint {
// MARK: Properties
let scheme: String = .Scheme.https
let host: String = .Host.amiiboApi
let port: Int? = nil
let path: String = .Path.lastUpdated
let parameters: Parameters = [:]
let method: HTTPRequestMethod = .get
let headers: [String : String] = [:]
let body: Data? = nil
}