import { NextRequest, NextResponse } from 'next/server' export async function GET(req: NextRequest) { return NextResponse.json({ message: 'Test endpoint working', timestamp: new Date().toISOString(), screenshots: [ '/app/screenshots/SOLUSD_240_ai_1752448407811.png', '/app/screenshots/SOLUSD_15_ai_1752441315672.png' ] }) }