Skip to content

Commit

Permalink
Add QUERY HTTPMethod. (Alamofire#3553)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshier authored Feb 1, 2022
1 parent 66d58fe commit 86f518d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/HTTPMethod.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
public static let post = HTTPMethod(rawValue: "POST")
/// `PUT` method.
public static let put = HTTPMethod(rawValue: "PUT")
/// `QUERY` method.
public static let query = HTTPMethod(rawValue: "QUERY")
/// `TRACE` method.
public static let trace = HTTPMethod(rawValue: "TRACE")

Expand Down

0 comments on commit 86f518d

Please sign in to comment.