Files
stripstream-librarian/apps/backoffice/app/health/route.ts

7 lines
146 B
TypeScript

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