DDRouter/HTTP/HTTPMethod.swift (
8
lines of code) (
raw
):
import Foundation public enum HTTPMethod: String { case get = "GET" case post = "POST" case put = "PUT" case patch = "PATCH" case delete = "DELETE" }