feat: add health check endpoint, fix task date filtering, and update Next.js type reference path

This commit is contained in:
poyrazavsever
2026-06-06 23:25:38 +03:00
parent 59b3897b44
commit 990c7a21b6
3 changed files with 9 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
import { NextResponse } from "next/server";
export const runtime = "edge";
export function GET() {
return NextResponse.json({ status: "ok", timestamp: new Date().toISOString() });
}