export async function http( request: RequestInfo, init?:RequestInit ): Promise { const response = await fetch(request,init); const body = await response.json(); return body; }