import httpClient from '@/common/http-client'; // HUBEZ_BO_API - 일별 통계 목록 조회. const sendList = (params) => { return httpClient.post('/api/v1/bo/mntrng/sendList', params, { withCredentials: false }); } // HUBEZ_BO_API - 월별 통계 목록 조회. const liveSendSttus = (params) => { return httpClient.post('/api/v1/bo/mntrng/liveSendSttus', params, { withCredentials: false }); } export default { sendList, liveSendSttus, }