Files
kycnotme/web/src/pages/health.ts
2025-05-22 22:38:41 +00:00

17 lines
299 B
TypeScript

import type { APIRoute } from 'astro'
export const GET: APIRoute = () => {
return new Response(
JSON.stringify({
message: 'OK',
timestamp: new Date().toISOString(),
}),
{
status: 200,
headers: {
'Content-Type': 'application/json',
},
}
)
}