import apiClient from "./index"; // 읽지않은 알람 불러오기 export const findAllEvent = () => { return apiClient.post(`/event/findAllEvent.json`); }; // 알람 읽음 처리 export const readEvent = (data) => { return apiClient.post(`/event/read.json`, data); }; // 전체 알람 읽음 처리 export const readAllEvent = () => { return apiClient.post(`/event/readAll.json`); };