Skip to content

Commit 5f52d75

Browse files
committed
readme updtes
1 parent bea0c50 commit 5f52d75

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,20 @@ The ability to return a stream is noticed in the function's documentation.
3636

3737
### Migration
3838

39+
TL;DR:
40+
Do this now:
41+
```
42+
ExAws.S3.get_object("my-bucket", "path/to/object") |> ExAws.request
43+
```
44+
not
45+
```
46+
ExAws.S3.get_object("my-bucket", "path/to/object")
47+
```
48+
3949
This change greatly simplifies the ExAws code paths, and removes entirely the complex
4050
meta-programming pervasive to the original approach. However, it does constitute
4151
a breaking change for anyone who had a client with custom logic.
4252

43-
44-
4553
## Highlighted Features
4654
- Easy configuration.
4755
- Minimal dependencies. Choose your favorite JSON codec and HTTP client.

0 commit comments

Comments
 (0)