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