f667d47
1
2
3
4
5
6
7
import { NextResponse } from 'next/server' import { getAttributionStats } from '@/lib/attribution-store' export async function GET() { return NextResponse.json(getAttributionStats()) }