diff --git a/app/api/health/route.ts b/app/api/health/route.ts new file mode 100644 index 0000000..180e1d4 --- /dev/null +++ b/app/api/health/route.ts @@ -0,0 +1,6 @@ +// app/api/health/route.ts +import { NextResponse } from "next/server"; + +export async function GET() { + return NextResponse.json({ status: "OK" }, { status: 200 }); +}