Skip to content

Commit cd71455

Browse files
committed
Merge dev into main
2 parents 7118a3a + 45d98e2 commit cd71455

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from enum import Enum
2+
3+
class Enum__Http__Method(str, Enum):
4+
GET = "GET"
5+
POST = "POST"
6+
PUT = "PUT"
7+
DELETE = "DELETE"
8+
PATCH = "PATCH"
9+
HEAD = "HEAD"
10+
OPTIONS = "OPTIONS"

0 commit comments

Comments
 (0)