Files
osdict_project/spider/httpchoices.py

11 lines
204 B
Python
Raw Permalink Normal View History

2022-10-22 11:01:52 +08:00
from normalutils.choices import BaseChoices
class HttpMethod(BaseChoices):
GET = "GET"
POST = "POST"
PUT = "PUT"
PATCH = "PATCH"
DELETE = "DELETE"
OPTIONS = "OPOTIONS"