const req = await fetch(
"http://localhost:3000/api/auth/signin", {
method: "POST",
header:{
'Accept':'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
username:myusername,
password:mypassword
})
},
)