clean commit

This commit is contained in:
2025-08-19 09:50:15 +02:00
parent 3c5cca407d
commit 69a947fa0b
249 changed files with 65688 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { NextRequest, NextResponse } from 'next/server'
import { proxyRequest, handleProxyResponse } from '@/lib/proxy-auth'
export async function GET() {
try {
const response = await proxyRequest('/api/v1/analytics/overview')
const data = await handleProxyResponse(response, 'Failed to fetch analytics overview')
return NextResponse.json(data)
} catch (error) {
console.error('Error fetching analytics overview:', error)
return NextResponse.json(
{ error: 'Failed to fetch analytics overview' },
{ status: 500 }
)
}
}