mediahub-fe/service/master/faq.ts

12 lines
300 B
TypeScript
Raw Normal View History

2025-01-10 11:52:58 +00:00
import { httpGetInterceptor } from "../http-config/http-interceptor-service";
export async function getFaqList() {
const url = `master/faq/list`;
return httpGetInterceptor(url);
2025-01-10 11:52:58 +00:00
}
export async function getUserFeedbacks() {
const url = "feedback/list-all";
return httpGetInterceptor(url);
}