export function json(status, data) { return new Response(JSON.stringify(data), { status, headers: { "Content-Type": "application/json" } }); }