blob: 70abace4f2a9fd2bd5499c2cd13df3fedc3c2648 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
export function GET(req: Request) {
const id = new URL(req.url).searchParams.get("id");
return new Response(JSON.stringify(id));
}
export async function POST(req: Request) {
const body = await req.json();
const id = new URL(req.url).searchParams.get("id");
return new Response(JSON.stringify({ body, id }));
}
|