2023-04-28 16:10:29 -05:00
|
|
|
export default async function (email: string) {
|
|
|
|
const response = await fetch(`/api/routes/users?email=${email}`);
|
|
|
|
|
|
|
|
const data = await response.json();
|
|
|
|
|
2023-05-22 23:08:16 -05:00
|
|
|
console.log(data);
|
|
|
|
|
2023-04-28 16:10:29 -05:00
|
|
|
return data.response;
|
|
|
|
}
|