From 183dda3b0eb4b34ca72927a5106f3bb8cefbc5b9 Mon Sep 17 00:00:00 2001 From: David Nadoba Date: Thu, 10 Feb 2022 10:45:08 +0100 Subject: [PATCH] Add link to examples folder in root README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e379b079b..6dad76de3 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,10 @@ httpClient.get(url: "https://apple.com/").whenComplete { result in You should always shut down `HTTPClient` instances you created using `try httpClient.syncShutdown()`. Please note that you must not call `httpClient.syncShutdown` before all requests of the HTTP client have finished, or else the in-flight requests will likely fail because their network connections are interrupted. +### async/await examples + +Examples for the async/await API can be found in the [`Examples` folder](./Examples) in this Repository. + ## Usage guide The default HTTP Method is `GET`. In case you need to have more control over the method, or you want to add headers or body, use the `HTTPClientRequest` struct: