Skip to content

Commit 7a4dfe0

Browse files
authored
Add link to examples folder in root README.md (#556)
1 parent 2fc105c commit 7a4dfe0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ httpClient.get(url: "https://apple.com/").whenComplete { result in
7171

7272
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.
7373

74+
### async/await examples
75+
76+
Examples for the async/await API can be found in the [`Examples` folder](./Examples) in this Repository.
77+
7478
## Usage guide
7579

7680
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:

0 commit comments

Comments
 (0)