[Bugfix] Communications #7

Merged
javier merged 4 commits from bugfix/communications into main 2023-04-18 22:55:25 +00:00
Showing only changes of commit 9ee4afc69d - Show all commits

View File

@ -27,9 +27,4 @@ public protocol Client {
as model: Model.Type
) async throws -> Model
/// Makes a request to a remote location based on a given endpoint and expects to return an original, uncasted response.
/// - Parameter endpoint: The endpoint for which to make a remote call.
/// - Returns: An original data response from a call to a remote endpoint.
@discardableResult func request(endpoint: some Endpoint) async throws -> Data
}