14 lines
232 B
Swift
Raw Normal View History

//
// String+Schemes.swift
// APIService
//
// Created by Javier Cicchelli on 04/12/2022.
// Copyright © 2022 Röck+Cöde. All rights reserved.
//
extension String {
enum Schemes {
static let http = "http"
}
}