📦 EqualifyEverything / equalify

📄 getAuditRecommendations.ts · 7 lines
1
2
3
4
5
6
7import { getAuditRecommendations as getAuditRecommendationsAuth } from "../auth"

export const getAuditRecommendations = async () => {
    const response = await getAuditRecommendationsAuth();
    return response;
}