import { NextResponse } from 'next/server' export async function GET() { return NextResponse.json({ status: 'healthy', timestamp: new Date().toISOString(), service: 'AI Trading Bot', version: '1.0.0' }) }