Files
react-training/hotel-management/src/constants/statusCode.ts
T
2023-10-29 21:33:49 +07:00

9 lines
122 B
TypeScript

const STATUS_CODE = {
OK: 200,
CREATE: 201,
NOT_FOUND: 404,
CONNECTION_TIME_OUT: 522,
};
export { STATUS_CODE };