Files
scatcher/schema/methods.py
2024-03-22 00:49:17 +02:00

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"