1
1
# AsyncHTTPClient Transport for Swift OpenAPI Generator
2
2
3
3
[ ![ ] ( https://img.shields.io/badge/docc-read_documentation-blue )] ( https://swiftpackageindex.com/swift-server/swift-openapi-async-http-client/documentation )
4
+ [ ![ ] ( https://img.shields.io/github/v/release/swift-server/swift-openapi-async-http-client )] ( https://github.com/swift-server/swift-openapi-async-http-client/releases )
4
5
[ ![ ] ( https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fswift-server%2Fswift-openapi-async-http-client%2Fbadge%3Ftype%3Dswift-versions )] ( https://swiftpackageindex.com/swift-server/swift-openapi-async-http-client )
5
6
[ ![ ] ( https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fswift-server%2Fswift-openapi-async-http-client%2Fbadge%3Ftype%3Dplatforms )] ( https://swiftpackageindex.com/swift-server/swift-openapi-async-http-client )
6
7
@@ -18,28 +19,19 @@ Use the transport with client code generated by [Swift OpenAPI Generator](https:
18
19
Add the package dependency in your ` Package.swift ` :
19
20
20
21
``` swift
21
- .package (
22
- url : " https://github.com/swift-server/swift-openapi-async-http-client" ,
23
- exact : " 1.0.0-alpha.1"
24
- ),
22
+ .package (url : " https://github.com/swift-server/swift-openapi-async-http-client" , from : " 1.0.0" ),
25
23
```
26
24
27
- Note that this repository does not have a 1.0 tag yet, so the API is not stable.
28
-
29
25
Next, in your target, add ` OpenAPIAsyncHTTPClient ` to your dependencies:
30
26
31
27
``` swift
32
28
.target (name : " MyTarget" , dependencies : [
33
29
.product (name : " OpenAPIAsyncHTTPClient" , package : " swift-openapi-async-http-client" ),
34
- ],
30
+ ]) ,
35
31
```
36
32
37
33
Then, to get started, check out ` AsyncHTTPClientTransport ` .
38
34
39
- ## Reporting issues
40
-
41
- Please report any issues related to this library in the [swift- openapi- generator](https :// github.com/apple/swift-openapi-generator/issues) repository.
42
-
43
35
## Documentation
44
36
45
37
To learn more, check out the full [ documentation] ( https://swiftpackageindex.com/swift-server/swift-openapi-async-http-client/documentation ) .
0 commit comments