serverus/tests/www/echo/___input/index.ts

8 lines
193 B
TypeScript

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