Files
discord.js/apps/guide/src/util/fetcher.ts
2023-03-25 22:52:47 +01:00

5 lines
102 B
TypeScript

export const fetcher = async (url: string) => {
const res = await fetch(url);
return res.json();
};