From 36982adb7c702aca5647014528da7c20dbd48981 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 1 Jul 2024 21:47:21 -0700 Subject: [PATCH] Add URLScheme constants to Web module. --- Web/Sources/Web/URLScheme.swift | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Web/Sources/Web/URLScheme.swift 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" +}