Skip to content

Commit 2b82dba

Browse files
committed
Merge branch 'develop' into main
2 parents 49d86aa + d07eb4e commit 2b82dba

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ NetworkRequester is an HTTP Combine-only networking library.
55
- [Requirements](#requirements)
66
- [Installation](#installation)
77
- [Usage](#usage)
8+
- [Conclusion](#conclusion)
89

910
## Requirements
1011

@@ -76,4 +77,8 @@ let requestBuilder = URLRequestBuilder(
7677
let caller = URLRequestCaller(decoder: JSONDecoder())
7778
let examplePublisher: AnyPublisher<User, NetworkingError> = caller.call(using: requestBuilder) // Expects response data as User is specified as Output
7879
```
79-
Take into account that when a response data is expected, a type that conforms to `Encodable` should be specified as `Output`. Otherwise `Void`.
80+
Take into account that when a response data is expected, a type that conforms to `Encodable` should be specified as `Output`. Otherwise `Void`.
81+
82+
## Conclusion
83+
84+
NetworkRequester is still very young. Improvements and new functionalities will be coming. Pull requests and suggestions are very welcomed.

0 commit comments

Comments
 (0)