Files
NetworkDeviceManagementSystem/backend/common/constants/status_code.py

9 lines
206 B
Python
Raw Normal View History

2026-05-21 12:01:10 +07:00
HTTP_OK = 200
HTTP_CREATED = 201
HTTP_BAD_REQUEST = 400
HTTP_UNAUTHORIZED = 401
HTTP_FORBIDDEN = 403
HTTP_NOT_FOUND = 404
HTTP_CONFLICT = 409
HTTP_UNPROCESSABLE_ENTITY = 422
HTTP_INTERNAL_SERVER_ERROR = 500