Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
1.2.4 source code.tar.gz | 2023-11-14 | 56.0 kB | |
1.2.4 source code.zip | 2023-11-14 | 74.8 kB | |
README.md | 2023-11-14 | 234 Bytes | |
Totals: 3 Items | 131.1 kB | 0 |
Adds POST, PUT, PATCH Encodable
body.
Example:
:::swift
let data: Data = try await network.post("/users", body: Credentials(username: "john", password: "doe"))
where Credentials
conforms to the Encodable
protocol.