await request({
url: "https://postman-echo.com/get",
method: "GET"
})
await request({
url: "https://postman-echo.com/post",
method: "POST",
data: JSON.stringify({ hello: 'world' }),
headers: {
"Content-Type": "application/json",
},
})