// File: route.ts // Path: apps/web/app/api/v1/health/route.ts // Project: AI Risk Index — airiskindex.io // Author: Simon-Pierre Boucher // Contact: contact@spboucher.ai // Copyright © 2026 Simon-Pierre Boucher. All rights reserved. // // Description: Public API: health check with index version. import { INDEX_VERSION } from "@airiskindex/scoring"; export const dynamic = "force-dynamic"; export function GET(): Response { return Response.json({ ok: true, index_version: INDEX_VERSION, time: new Date().toISOString(), }); }