/** * @author Ryan * @description Common Status 코드 */ export const STATUS_CODE = { SUCCESS: 'success', FAIL: 'fail', DISASTER: 'disaster', }; /** * @author Ryan * @description 각 도메인 Error 메세지 정의 */ export const ERROR_MESSAGE = { SERVER_ERROR: '개발팀의 문의해주세요.', };