Files
falah-mobile/src/app/api/nurbuddy-health/route.ts
T

5 lines
141 B
TypeScript
Raw Normal View History

2026-06-28 04:27:21 +08:00
import { NextResponse } from 'next/server'
export async function GET() {
return NextResponse.json({ status: 'ok', service: 'nurbuddy' })
}