serverus/tests/www/echo/index.ts

8 lines
217 B
TypeScript

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