init
This commit is contained in:
10
spider/httpchoices.py
Normal file
10
spider/httpchoices.py
Normal file
@ -0,0 +1,10 @@
|
||||
from normalutils.choices import BaseChoices
|
||||
|
||||
|
||||
class HttpMethod(BaseChoices):
|
||||
GET = "GET"
|
||||
POST = "POST"
|
||||
PUT = "PUT"
|
||||
PATCH = "PATCH"
|
||||
DELETE = "DELETE"
|
||||
OPTIONS = "OPOTIONS"
|
||||
Reference in New Issue
Block a user