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); }