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.
A few of the code snippets provided in README.md are not quite correct. E.g.
README.md
var request = try HTTPClient.HTTPRequest(url: "https://swift.org", method: .POST)
should be
var request = try HTTPClient.Request(url: "https://swift.org", method: .POST)