diff --git a/Web/Sources/Web/URLScheme.swift b/Web/Sources/Web/URLScheme.swift new file mode 100644 index 000000000..52b7f2894 --- /dev/null +++ b/Web/Sources/Web/URLScheme.swift @@ -0,0 +1,16 @@ +// +// File.swift +// +// +// Created by Brent Simmons on 6/30/24. +// + +import Foundation + +public struct URLScheme { + + public let http = "http" + public let https = "https" + public let mailto = "mailto" + public let tel = "tel" +}