10 lines
145 B
Python
10 lines
145 B
Python
from enum import Enum
|
|
|
|
|
|
class HTTPMethod(str, Enum):
|
|
POST = 'POST'
|
|
GET = 'GET'
|
|
PATCH = 'PATCH'
|
|
PUT = 'PUT'
|
|
DELETE = 'DELETE'
|