import { get, post } from '../request' const prefix = 'feedback/' export const getFeedbackListApi = async () => { return await get(`${prefix}list`) } export const createFeedbackApi = async (params) => { return await post(`${prefix}create`, params) }