/** * Health check endpoint handler */ import type { Context } from 'hono'; import type { Env } from '../types'; /** * Health check endpoint */ export function handleHealth(c: Context<{ Bindings: Env }>) { return c.json({ status: 'ok', timestamp: new Date().toISOString(), service: 'server-recommend', request_id: c.get('requestId'), }); }