Phillnet-2 / Tools /utils /fetch.ts
ayjays132's picture
Upload 478 files
101858b verified
export async function phillFetch(url: string, options: any = {}): Promise<any> {
const response = await fetch(url, options);
return response;
}