aiagentdlafirm/app/api/health/route.ts
Adrian Miesikowski 3ea0779852 first commit
2026-02-10 13:34:41 +01:00

9 lines
171 B
TypeScript

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