Defined the constants for the String+Scheme extension.

This commit is contained in:
Javier Cicchelli 2023-04-18 21:48:10 +02:00
parent 30dbaa3cc6
commit 247049268c

View File

@ -0,0 +1,5 @@
extension String {
enum Scheme {
static let https = "https"
}
}