Skip to content

Commit

Permalink
feat: Add "TRACE" to HttpMethod enum (#3294)
Browse files Browse the repository at this point in the history
Add "TRACE" to HttpMethod enum
  • Loading branch information
provinzkraut committed Mar 30, 2024
1 parent 3ef6770 commit f86920d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions litestar/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class HttpMethod(str, Enum):
PATCH = "PATCH"
POST = "POST"
PUT = "PUT"
TRACE = "TRACE"


class MediaType(str, Enum):
Expand Down

0 comments on commit f86920d

Please sign in to comment.