Skip to content

Commit 7b132c0

Browse files
committed
Make IndiePitcher sendable and use shared httpclient by default
1 parent 02c9543 commit 7b132c0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Sources/IndiePitcherSwift/IndiePitcherSwift.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ import NIOFoundationCompat
77

88
/// IndiePitcher SDK.
99
/// 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
1212
private let apiKey: String
1313
private let requestTimeout: TimeAmount = .seconds(30)
1414
private let maxResponseSize = 1024 * 1024 * 100
1515

1616
/// Creates a new instance of IndiePitcher SDK
1717
/// - 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.
1919
/// - apiKey: Your project's secret key.
20-
public init(client: HTTPClient, apiKey: String) {
20+
public init(client: HTTPClient = .shared, apiKey: String) {
2121
self.client = client
2222
self.apiKey = apiKey
2323
}

Tests/IndiePitcherSwiftTests/IndiePitcherSwiftTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ final class IndiePitcherSwiftTests: XCTestCase {
88
var indiePitcher: IndiePitcher!
99

1010
override func setUp() async throws {
11-
indiePitcher = IndiePitcher(client: .shared, apiKey: IP_SECRET_API_KEY)
11+
indiePitcher = IndiePitcher(apiKey: IP_SECRET_API_KEY)
1212
}
1313

1414
override func tearDown() async throws {

0 commit comments

Comments
 (0)