Skip to content

Commit

Permalink
✨ :: URLQueryEncoder init 접근제어가 public
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Jul 31, 2023
1 parent 686e10e commit a90c0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Emdpoint/Encoding/URLQueryEncoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public struct URLQueryEncoder: ParameterEncodable {
public let arrayEncoding: ArrayEncoding
public let boolEncoding: BoolEncoding

init(arrayEncoding: ArrayEncoding = .noBrackets, boolEncoding: BoolEncoding = .literal) {
public init(arrayEncoding: ArrayEncoding = .noBrackets, boolEncoding: BoolEncoding = .literal) {
self.arrayEncoding = arrayEncoding
self.boolEncoding = boolEncoding
}
Expand Down

0 comments on commit a90c0e2

Please sign in to comment.