2025-01-10 11:52:58 +00:00
|
|
|
import { httpGetInterceptor } from "../http-config/http-interceptor-service";
|
2024-12-10 18:04:03 +00:00
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|