serverus/tests/www/api/echo/hi/index.ts

9 lines
178 B
TypeScript
Raw Permalink Normal View History

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