oa-ai/src/app/api/health/route.ts""

6 lines
121 B
Plaintext

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