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