blob: 151478ddcafbed05fbcc547a9ce8b257154d30dc (
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 }));
}
|