Files
NetNewsWire/Web/Sources/Web/URLScheme.swift
2024-07-01 22:19:46 -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"
}