Skip to content

Commit e5f9abd

Browse files
authored
make schemeFor public (#1331)
1 parent 4a8a8a6 commit e5f9abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Services/ContainerAPIService/Client/RequestScheme.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public enum RequestScheme: String, Sendable {
4040
/// Returns the prescribed protocol to use while making a HTTP request to a webserver
4141
/// - Parameter host: The domain or IP address of the webserver
4242
/// - Returns: RequestScheme
43-
package func schemeFor(host: String) throws -> Self {
43+
public func schemeFor(host: String) throws -> Self {
4444
guard host.count > 0 else {
4545
throw ContainerizationError(.invalidArgument, message: "host cannot be empty")
4646
}

0 commit comments

Comments
 (0)