We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4dc378 commit 34c0a5dCopy full SHA for 34c0a5d
1 file changed
Sources/RequestInfo/AnyEncodable.swift
@@ -8,18 +8,18 @@
8
9
import Foundation
10
11
-public struct AnyEncodable {
+struct AnyEncodable {
12
private let encodable: Encodable
13
14
- public init(_ encodable: Encodable) {
+ init(_ encodable: Encodable) {
15
self.encodable = encodable
16
}
17
18
19
// MARK: - Encodable
20
21
extension AnyEncodable: Encodable {
22
- public func encode(to encoder: Encoder) throws {
+ func encode(to encoder: Encoder) throws {
23
try encodable.encode(to: encoder)
24
25
0 commit comments