|
@@ -43,6 +43,8 @@ public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
|
|
|
public static let post = HTTPMethod(rawValue: "POST")
|
|
public static let post = HTTPMethod(rawValue: "POST")
|
|
|
/// `PUT` method.
|
|
/// `PUT` method.
|
|
|
public static let put = HTTPMethod(rawValue: "PUT")
|
|
public static let put = HTTPMethod(rawValue: "PUT")
|
|
|
|
|
+ /// `QUERY` method.
|
|
|
|
|
+ public static let query = HTTPMethod(rawValue: "QUERY")
|
|
|
/// `TRACE` method.
|
|
/// `TRACE` method.
|
|
|
public static let trace = HTTPMethod(rawValue: "TRACE")
|
|
public static let trace = HTTPMethod(rawValue: "TRACE")
|
|
|
|
|
|