Files
Webserver/app/api/health/route.ts

6 lines
179 B
TypeScript
Raw Normal View History

2026-02-07 20:17:46 -05:00
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ status: 'ok', timestamp: new Date().toISOString() }, { status: 200 });
}