jumpserver/apps/common/const/http.py

8 lines
93 B
Python
Raw Normal View History

GET = 'GET'
POST = 'POST'
PUT = 'PUT'
PATCH = 'PATCH'
DELETE = 'DELETE'
OPTIONS = 'OPTIONS'