Add URLScheme constants to Web module.

This commit is contained in:
Brent Simmons 2024-07-01 21:47:21 -07:00
parent 5e64b6a99c
commit 36982adb7c
1 changed files with 16 additions and 0 deletions

View File

@ -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"
}