export function GET(_req: Request, meta: Record): Response { const input = decodeURIComponent(meta.params.input ?? ''); return new Response(input, { status: 200, headers: { 'Content-Type': 'text/plain' } }); }