export async function main(url: string) {
const resp = await fetch(url);
return {
ok: resp.ok,
status: resp.status,
text: await resp.text(),
};
}
Submitted by hugo697 11 days ago
export async function main(url: string) {
const resp = await fetch(url);
return {
ok: resp.ok,
status: resp.status,
text: await resp.text(),
};
}
Submitted by admin 643 days ago
export async function main(url: string) {
const resp = await fetch(url);
return {
ok: resp.ok,
status: resp.status,
text: await resp.text(),
};
}
Submitted by jaller94 1012 days ago