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