From cc71152b1689c83e6d8b5e99e9f2fcfb23377742 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 1 Jul 2024 22:19:46 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20URLScheme=20=E2=80=94=C2=A0make=20members?= =?UTF-8?q?=20static.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/Sources/Web/URLScheme.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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" }