mirror of
https://github.com/shadoll/scatcher.git
synced 2025-12-20 11:32:00 +00:00
12 lines
184 B
Python
12 lines
184 B
Python
from enum import Enum
|
|
|
|
|
|
class Methods(str, Enum):
|
|
GET = "GET"
|
|
POST = "POST"
|
|
PUT = "PUT"
|
|
DELETE = "DELETE"
|
|
PATCH = "PATCH"
|
|
OPTIONS = "OPTIONS"
|
|
HEAD = "HEAD"
|