diff --git a/Sources/Endpoints/GetLastUpdatedEndpoint.swift b/Sources/Endpoints/GetLastUpdatedEndpoint.swift new file mode 100644 index 0000000..1d7d0a2 --- /dev/null +++ b/Sources/Endpoints/GetLastUpdatedEndpoint.swift @@ -0,0 +1,16 @@ +import Communications +import Foundation + +struct GetLastUpdatedEndpoint: Endpoint { + + // MARK: Properties + + let scheme: String = .Scheme.https + let host: String = .Host.amiiboApi + let port: Int? + let path: String = .Path.lastUpdated + let method: HTTPRequestMethod = .get + let headers: [String : String] = [:] + let body: Data? + +}