18 lines
385 B
Python
18 lines
385 B
Python
from normalutils.choices import BaseChoices
|
|
|
|
|
|
class HttpMethod(BaseChoices):
|
|
GET = "GET"
|
|
POST = "POST"
|
|
PUT = "PUT"
|
|
PATCH = "PATCH"
|
|
DELETE = "DELETE"
|
|
OPTIONS = "OPOTIONS"
|
|
|
|
|
|
class HtmlContentType(BaseChoices):
|
|
TEXT_PLAIN = "text/plain"
|
|
TEXT_HTML = "text/html"
|
|
TEXT_MARKDOWN = "text/markdown"
|
|
APPLICATION_JSON = "application/json"
|