muthuk1's picture
feat: recovery attribution, pre-churn warnings, recovery card, threshold editor, telegram alerts
f667d47
raw
history blame contribute delete
188 Bytes
import { NextResponse } from 'next/server'
import { getAttributionStats } from '@/lib/attribution-store'
export async function GET() {
return NextResponse.json(getAttributionStats())
}