Fix URLScheme — make members static.
This commit is contained in:
parent
36982adb7c
commit
cc71152b16
@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// File.swift
|
// URLScheme.swift
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
// Created by Brent Simmons on 6/30/24.
|
// Created by Brent Simmons on 6/30/24.
|
||||||
@ -9,8 +9,8 @@ import Foundation
|
|||||||
|
|
||||||
public struct URLScheme {
|
public struct URLScheme {
|
||||||
|
|
||||||
public let http = "http"
|
public static let http = "http"
|
||||||
public let https = "https"
|
public static let https = "https"
|
||||||
public let mailto = "mailto"
|
public static let mailto = "mailto"
|
||||||
public let tel = "tel"
|
public static let tel = "tel"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user