zhaoyingbo b7437f47e4
All checks were successful
Egg CI/CD / build-image (push) Successful in 49s
Egg CI/CD / deploy (push) Successful in 23s
feat: 优化请求处理 & 拆分Type
2024-06-08 09:15:14 +00:00

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!");
};