import Foundation enum HTTPMethod: String { case get = "GET" case post = "POST" case patch = "PATCH" case delete = "DELETE" }