import('./fetch') export async function GET(url: string) { return fetch(url) } export async function GET_JSON(url: string) { return fetch(url).then(res => {return res.json()}) }