mediahub-fe/service/master/faq.ts

12 lines
300 B
TypeScript

import { httpGetInterceptor } from "../http-config/http-interceptor-service";
export async function getFaqList() {
const url = `master/faq/list`;
return httpGetInterceptor(url);
}
export async function getUserFeedbacks() {
const url = "feedback/list-all";
return httpGetInterceptor(url);
}