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