Skip to content

Commit

Permalink
Fix pathParams access level
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBarba committed Jan 24, 2023
1 parent f7d14a4 commit 3eddfe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Vercel/Request.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public struct Request: Sendable {
public let body: String?

/// Private instance var to prevent decodable from failing
internal var pathParams: Parameters = .init()
public internal(set) var pathParams: Parameters = .init()

internal init(_ payload: InvokeEvent.Payload) {
self.method = payload.method
Expand Down

0 comments on commit 3eddfe0

Please sign in to comment.