export const manageMicroAppReq = async (req: Request) => { const url = new URL(req.url); const body = (await req.json()) as any; console.log("🚀 ~ manageMicroAppReq ~ body:", body); return new Response("hello, glade to see you!"); };