import axiosService from '../axiosService' import { APIResponseProps } from '../types' export async function getCategoryList(params: any): Promise { return axiosService.get('/cms/categories', { params, }) }