// app/api/install/status/route.ts
import { NextResponse } from "next/server";
import { isInstalled } from "@/lib/install-state";

export async function GET() {
  return NextResponse.json({ installed: isInstalled() });
}
