File tree 1 file changed +6
-3
lines changed
Sources/IndiePitcherSwift
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,19 @@ extension HTTPClientResponse {
16
16
public struct IndiePitcher : Sendable {
17
17
private let client : HTTPClient // is sendable / thread-safe
18
18
private let apiKey : String
19
+ private let baseURL : String
19
20
private let requestTimeout : TimeAmount = . seconds( 30 )
20
21
private let maxResponseSize = 1024 * 1024 * 100
21
22
22
23
/// Creates a new instance of IndiePitcher SDK
23
24
/// - Parameters:
24
- /// - client: Vapor's client instance to use to perform network requests. Uses the shared client by default.
25
+ /// - client: Vapor's client instance to use to perform network requests. Uses the shared client by default.
25
26
/// - apiKey: Your project's secret key.
26
- public init ( client: HTTPClient = . shared, apiKey: String ) {
27
+ /// - baseURL: The base URL for the API. Defaults to "https://api.indiepitcher.com/v1".
28
+ public init ( client: HTTPClient = . shared, apiKey: String , baseURL: String = " https://api.indiepitcher.com/v1 " ) {
27
29
self . client = client
28
30
self . apiKey = apiKey
31
+ self . baseURL = baseURL
29
32
}
30
33
31
34
// MARK: networking
@@ -50,7 +53,7 @@ public struct IndiePitcher: Sendable {
50
53
}
51
54
52
55
private func buildUri( path: String ) -> String {
53
- " https://api.indiepitcher.com/v1 " + path
56
+ baseURL + path
54
57
}
55
58
56
59
private func post< T: Codable > ( path: String , body: Codable ) async throws -> T
You can’t perform that action at this time.
0 commit comments