1
//native
2
3
export async function main(url: string, request_type: string) {
4
const req = new Request(url, {
5
method: request_type,
6
});
7
let resp = await fetch(req);
8
9
return { response: await resp.text() };
10
}
11