import { delReq, getReq, postReq, putReq } from '@/utils'; function getOceanusTreeApi(data) { return getReq('/oceanus/api/v1/categories', data); } function addOceanusTreeApi(data) { return postReq('/oceanus/api/v1/categories', data); } export default { getOceanusTree: getOceanusTreeApi, addOceanusTree: addOceanusTreeApi, };