Add URLScheme constants to Web module.
This commit is contained in:
parent
5e64b6a99c
commit
36982adb7c
|
@ -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"
|
||||
}
|
Loading…
Reference in New Issue