Release 2.1.0
Unclaimed project
Are you a maintainer of Networking? Claim this project to take control of your public changelog and roadmap.
Changelog
⚡️ Concise networking code leveraging async-await, Decodable & Generics.
Release 2.1.0
Release 2.0.3
Replaces POST PUT PATCH params by body parameter with an enum (.urlEncode | .json | .multipart)
Adds POST, PUT, PATCH Encodable body.
Example:
let data: Data = try await network.post("/users", body: Credentials(username: "john", password: "doe"))
where Credentials conforms to the Encodable protocol.