Files
bot/apps/builder/src/helpers/fetcher.ts
2023-03-15 11:52:38 +01:00

5 lines
136 B
TypeScript

export const fetcher = async (input: RequestInfo, init?: RequestInit) => {
const res = await fetch(input, init)
return res.json()
}