We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
55ab4bd
Adds POST, PUT, PATCH Encodable body.
Encodable
Example:
let data: Data = try await network.post("/users", body: Credentials(username: "john", password: "doe"))
where Credentials conforms to the Encodable protocol.
Credentials