Files
chadebebe/app/api/health/route.ts
michaeltieso 3480888eaa Initial commit
2025-12-01 14:49:17 +00:00

10 lines
201 B
TypeScript

import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({
status: 'ok',
timestamp: new Date().toISOString(),
uptime: process.uptime(),
});
}