1
2
3
4
export default async function (req: Request): Promise<Response> {
const message = "HELLO HELLO";
return Response.json({message});
}