Files
hoerdle/app/api/health/route.ts
2025-11-26 23:37:40 +01:00

6 lines
142 B
TypeScript

import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ status: 'ok' }, { status: 200 });
}