export async function phillFetch(url: string, options: any = {}): Promise { const response = await fetch(url, options); return response; }