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.
Scheme
1 parent 1736274 commit 648342dCopy full SHA for 648342d
Sources/APIRouter/URLBuilder.swift
@@ -69,15 +69,15 @@ public extension URL {
69
public struct Scheme: HttpUrlProtocol {
70
private let scheme: URLScheme
71
72
- static let http = Self(.http)
+ public static let http = Self(.http)
73
74
- static let https = Self(.https)
+ public static let https = Self(.https)
75
76
- static let mqtt = Self(.mqtt)
+ public static let mqtt = Self(.mqtt)
77
78
- static let mqtts = Self(.mqtts)
+ public static let mqtts = Self(.mqtts)
79
80
- static func custom(_ value: String) -> Self {
+ public static func custom(_ value: String) -> Self {
81
Self(.custom(value))
82
}
83
0 commit comments