File tree 2 files changed +5
-5
lines changed
Sources/IndiePitcherSwift
Tests/IndiePitcherSwiftTests
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,17 +7,17 @@ import NIOFoundationCompat
7
7
8
8
/// IndiePitcher SDK.
9
9
/// This SDK is only intended for server-side Swift use. Do not embed the secret API key in client-side code for security reasons.
10
- public struct IndiePitcher {
11
- private let client : HTTPClient
10
+ public struct IndiePitcher : Sendable {
11
+ private let client : HTTPClient // is sendable / thread-safe
12
12
private let apiKey : String
13
13
private let requestTimeout : TimeAmount = . seconds( 30 )
14
14
private let maxResponseSize = 1024 * 1024 * 100
15
15
16
16
/// Creates a new instance of IndiePitcher SDK
17
17
/// - Parameters:
18
- /// - client: Vapor's client instance to use to perform network requests.
18
+ /// - client: Vapor's client instance to use to perform network requests. Uses the shared client by default.
19
19
/// - apiKey: Your project's secret key.
20
- public init ( client: HTTPClient , apiKey: String ) {
20
+ public init ( client: HTTPClient = . shared , apiKey: String ) {
21
21
self . client = client
22
22
self . apiKey = apiKey
23
23
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ final class IndiePitcherSwiftTests: XCTestCase {
8
8
var indiePitcher : IndiePitcher !
9
9
10
10
override func setUp( ) async throws {
11
- indiePitcher = IndiePitcher ( client : . shared , apiKey: IP_SECRET_API_KEY)
11
+ indiePitcher = IndiePitcher ( apiKey: IP_SECRET_API_KEY)
12
12
}
13
13
14
14
override func tearDown( ) async throws {
You can’t perform that action at this time.
0 commit comments