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