8 lines
247 B
TypeScript
8 lines
247 B
TypeScript
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!");
|
|
};
|