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

9 lines
193 B
TypeScript
Raw Normal View History

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