Files
NetNewsWire/Modules/Web/Sources/Web/URLScheme.swift
2024-07-06 21:07:05 -07:00

17 lines
258 B
Swift

//
// URLScheme.swift
//
//
// Created by Brent Simmons on 6/30/24.
//
import Foundation
public struct URLScheme {
public static let http = "http"
public static let https = "https"
public static let mailto = "mailto"
public static let tel = "tel"
}