mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
17 lines
258 B
Swift
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"
|
|
}
|