Skip to content

Commit 45d98e2

Browse files
committed
refactored in Enum__Http__Method
1 parent 7118a3a commit 45d98e2

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)