1 2 3 4 5 6 7
const BASE_URL = 'https://skyblock-api.matdoes.dev/' export async function get(path: string) { const resp = await fetch(BASE_URL + path) return await resp.json() }