📦 EqualifyEverything / equalify

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

export const getMostCommonBlockers = async () => {
    const response = await getMostCommonBlockersAuth();
    return response;
}