/** * Success response status code. */ export const HTTP_STATUS_CODE_SUCCESS = 200; /** * Created response status code. */ export const HTTP_STATUS_CODE_CREATED = 201; /** * No content response status code. */ export const HTTP_STATUS_CODE_NO_CONTENT = 204;