Skip to content

Commit adfcbb2

Browse files
committed
add baseURL parameter to IndiePitcher initializer
1 parent 6a3947d commit adfcbb2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Sources/IndiePitcherSwift/IndiePitcherSwift.swift

+6-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,19 @@ extension HTTPClientResponse {
1616
public struct IndiePitcher: Sendable {
1717
private let client: HTTPClient // is sendable / thread-safe
1818
private let apiKey: String
19+
private let baseURL: String
1920
private let requestTimeout: TimeAmount = .seconds(30)
2021
private let maxResponseSize = 1024 * 1024 * 100
2122

2223
/// Creates a new instance of IndiePitcher SDK
2324
/// - 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.
2526
/// - 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") {
2729
self.client = client
2830
self.apiKey = apiKey
31+
self.baseURL = baseURL
2932
}
3033

3134
// MARK: networking
@@ -50,7 +53,7 @@ public struct IndiePitcher: Sendable {
5053
}
5154

5255
private func buildUri(path: String) -> String {
53-
"https://api.indiepitcher.com/v1" + path
56+
baseURL + path
5457
}
5558

5659
private func post<T: Codable>(path: String, body: Codable) async throws -> T

0 commit comments

Comments
 (0)