initial 2
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-06-26 09:26:50 +01:00
parent 194330fb47
commit 3b37368e7d
213 changed files with 14688 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import { handleApi } from "@/lib/api";
import { getDashboard } from "@/lib/services/dashboard";
export async function GET(request: Request) {
const { searchParams } = new URL(request.url);
const date = searchParams.get("date") ?? undefined;
return handleApi(() => getDashboard(date));
}