mediahub-fe/service/master/faq.ts

8 lines
187 B
TypeScript

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