import { NextResponse } from 'next/server' export async function GET() { return NextResponse.json({ test: true, message: "Simple test endpoint" }) }