diff --git a/Web/Sources/Web/URLScheme.swift b/Web/Sources/Web/URLScheme.swift index 52b7f2894..2247e6fbc 100644 --- a/Web/Sources/Web/URLScheme.swift +++ b/Web/Sources/Web/URLScheme.swift @@ -1,6 +1,6 @@ // -// File.swift -// +// URLScheme.swift +// // // Created by Brent Simmons on 6/30/24. // @@ -9,8 +9,8 @@ import Foundation public struct URLScheme { - public let http = "http" - public let https = "https" - public let mailto = "mailto" - public let tel = "tel" + public static let http = "http" + public static let https = "https" + public static let mailto = "mailto" + public static let tel = "tel" }