import { NextResponse } from "next/server";

/**
 * qaf-differences route placeholder (ADR 019).
 *
 * Replace with real handler. Keep customer-specific behaviour out of this
 * file (ADR 010); route into the qaf-differences module's public entrypoint.
 */
export async function GET() {
  return NextResponse.json({ module: "qaf-differences", ok: true });
}
