mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Add URLScheme constants to Web module.
This commit is contained in:
16
Web/Sources/Web/URLScheme.swift
Normal file
16
Web/Sources/Web/URLScheme.swift
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user