7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
export async function GET() {
|
|
return new Response("ok", {
|
|
status: 200,
|
|
headers: { "content-type": "text/plain; charset=utf-8" }
|
|
});
|
|
}
|