Files
stadtwerke/innungsapp/apps/admin/app/api/health/route.ts
Timo Knuth 253c3c1c6d push
2026-02-27 15:19:24 +01:00

6 lines
158 B
TypeScript

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