📦 EqualifyEverything / equalify

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

export const getMostCommonUrls = async () => {
    const response = await getMostCommonUrlsAuth();
    return response;
}