1import { NextResponse } from "next/server";2import { APP_VERSION } from "@/lib/env";34export const dynamic = "force-dynamic";56export async function GET() {7 return NextResponse.json({ status: "ok", version: APP_VERSION, time: new Date().toISOString() });8}9